mt method

NikuCore mt(
  1. double margin
)

Apply margin to top

Equivalent to

Container(
  margin: EdgeInsets.only(top: input)
)

Implementation

NikuCore mt(double margin) {
  _mt = margin;

  return this;
}