removePadding method

dynamic removePadding(
  1. BuildContext context, {
  2. bool removeLeft = false,
  3. bool removeTop = false,
  4. bool removeRight = false,
  5. bool removeBottom = false,
})

Implementation

removePadding(
  BuildContext context, {
  bool removeLeft = false,
  bool removeTop = false,
  bool removeRight = false,
  bool removeBottom = false,
}) {
  return MediaQuery.removePadding(
      removeBottom: removeBottom,
      removeLeft: removeLeft,
      removeRight: removeRight,
      removeTop: removeTop,
      context: context,
      child: this);
}