removePadding method
dynamic
removePadding(
- BuildContext context, {
- bool removeLeft = false,
- bool removeTop = false,
- bool removeRight = false,
- 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);
}