width static method

FloretParent<SizedBox> width(
  1. double width
)

Implementation

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