Padding.all constructor

const Padding.all(
  1. int value
)

Creates uniform padding on all sides.

Implementation

const Padding.all(int value)
  : top = value,
    right = value,
    bottom = value,
    left = value;