bg method

Niku bg(
  1. Color color
)

Apply background to widget

Equivalent to:

ColoredBox(
  color: input
)

Implementation

Niku bg(Color color) => Niku(ColoredBox(color: color, child: this._widget));