safeArea method

DefineMTileModifier safeArea({
  1. bool top = true,
  2. bool bottom = true,
  3. bool left = true,
  4. bool right = true,
})

Implementation

DefineMTileModifier 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(),
    ),
  );
}