margin static method

FloretParent<Container> margin(
  1. EdgeInsets margin
)

Implementation

static FloretParent<Container> margin(EdgeInsets margin) =>
    (Widget child) => Container(
          child: child,
          margin: margin,
        );