minSize static method

FloretParent<ConstrainedBox> minSize(
  1. double width,
  2. double height
)

Implementation

static FloretParent<ConstrainedBox> minSize(double width, double height) =>
    (Widget child) => ConstrainedBox(
          child: child,
          constraints: BoxConstraints(
            minWidth: width,
            minHeight: height,
          ),
        );