universalPadding method

EdgeInsets universalPadding()

Basic padding that can be used for anything.

Implementation

EdgeInsets universalPadding() {
  return const EdgeInsets.fromLTRB(10, 10, 10, 10);
}