fullHeight method
Apply full width to self
Equivalent to:
SizedBox(
height: double.infinity
)
Implementation
Niku fullHeight() {
_widget = SizedBox(height: double.infinity, child: _widget);
return this;
}
Apply full width to self
Equivalent to:
SizedBox(
height: double.infinity
)
Niku fullHeight() {
_widget = SizedBox(height: double.infinity, child: _widget);
return this;
}