margin method

Niku margin(
  1. EdgeInsets margin
)

Apply margin using EdgeInsets

Equivalent to:

Container(
  margin: input
)

Implementation

Niku margin(EdgeInsets margin) => Niku(Container(
      margin: margin,
      child: this._widget,
    ));