mt static method

FloretParent<Container> mt(
  1. double margin
)

Implementation

static FloretParent<Container> mt(double margin) =>
    (Widget child) => Container(
          child: child,
          margin: EdgeInsets.only(top: margin),
        );