size static method

FloretParent<SizedBox> size(
  1. double width,
  2. double height
)

Implementation

static FloretParent<SizedBox> size(double width, double height) =>
    (Widget child) => SizedBox(
          child: child,
          width: width,
          height: height,
        );