paddingCustom method

EdgeInsets paddingCustom({
  1. int? horizontal,
  2. int? vertical,
  3. int? top,
  4. int? bottom,
  5. int? left,
  6. int? right,
  7. int? all,
})
inherited

Important: the values you are passing in are scale factors on the value specified by your fundamental theme they are not absolute measurements.

For example, if the default margin is 8.0, and you pass in all: 2, you will get 16 all the way around.

Implementation

EdgeInsets paddingCustom({
  int? horizontal,
  int? vertical,
  int? top,
  int? bottom,
  int? left,
  int? right,
  int? all
}) {
  return fundamentals.paddingCustom(
    horizontal: horizontal,
    vertical: vertical,
    top: top,
    bottom: bottom,
    left: left,
    right: right,
    all: all
  );
}