removeAllPadding method

dynamic removeAllPadding(
  1. BuildContext context
)

Implementation

removeAllPadding(BuildContext context) {
  return MediaQuery.removePadding(
      context: context, removeBottom: true, removeLeft: true, removeRight: true, removeTop: true, child: this);
}