EdgeInsets.all constructor
const
EdgeInsets.all(
- int value
Creates insets where all edges have the same value.
Implementation
const EdgeInsets.all(int value)
: left = value,
top = value,
right = value,
bottom = value;