SizedBox.fromSize constructor Null safety
Creates a box with the specified size.
Implementation
SizedBox.fromSize({ super.key, super.child, Size? size })
: width = size?.width,
height = size?.height;
Creates a box with the specified size.
SizedBox.fromSize({ super.key, super.child, Size? size })
: width = size?.width,
height = size?.height;