fullSize method

Niku fullSize()

Apply both full width and height to self

Equivalent to:

SizedBox(
  width: double.infinity,
  height: double.infinity,
)

Implementation

Niku fullSize() {
  _widget = SizedBox(
    width: double.infinity,
    height: double.infinity,
    child: _widget,
  );

  return this;
}