fullSize method
Apply both full width and height to self
Equivalent to:
SizedBox(
width: double.infinity
)
Implementation
Niku fullSize() => Niku(
SizedBox(
width: double.infinity,
height: double.infinity,
child: this._widget,
),
);