EdgeInsets.all constructor

const EdgeInsets.all(
  1. Dim value
)

Creates spacing where all four sides have the same value.

Implementation

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