mb static method

FloretParent<Container> mb(
  1. double margin
)

Implementation

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