margin method

Niku margin(
  1. EdgeInsets margin
)

Apply margin using EdgeInsets

Equivalent to:

Container(
  margin: input
)

Implementation

Niku margin(EdgeInsets margin) {
  _widget = Container(
    margin: margin,
    child: _widget,
  );

  return this;
}