safeArea method
Implementation
DefineMStackModifier safeArea({
bool top = true,
bool bottom = true,
bool left = true,
bool right = true,
}) {
return this.copyWith(
valueSafeArea: SafeArea(
top: top,
bottom: bottom,
left: left,
right: right,
child: Container(),
),
);
}