EdgeInsets.all constructor

const EdgeInsets.all(
  1. int value
)

Creates insets with the same value for all four sides.

Implementation

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