paddings property

Map<String, EdgeInsets> paddings
getter/setter pair

Implementation

static Map<String, EdgeInsets> paddings = {
  'small': const EdgeInsets.all(6.0),
  'medium': const EdgeInsets.all(10.0),
  'large': const EdgeInsets.all(12.0),
  'biggest': const EdgeInsets.all(16.0),
  'small-horizontal': const EdgeInsets.symmetric(horizontal: 6.0),
  'medium-horizontal': const EdgeInsets.symmetric(horizontal: 10.0),
  'large-horizontal': const EdgeInsets.symmetric(horizontal: 12.0),
  'biggest-horizontal': const EdgeInsets.symmetric(horizontal: 16.0),
  'small-vertical': const EdgeInsets.symmetric(vertical: 6.0),
  'medium-vertical': const EdgeInsets.symmetric(vertical: 10.0),
  'large-vertical': const EdgeInsets.symmetric(vertical: 12.0),
  'biggest-vertical': const EdgeInsets.symmetric(vertical: 16.0),
};