Creates an EdgeInsets with specific values for each edge
Top edge spacing
Right edge spacing
Bottom edge spacing
Left edge spacing
Bottom edge spacing
Left edge spacing
Right edge spacing
Top edge spacing
Gets the total horizontal spacing (left + right)
Gets the total vertical spacing (top + bottom)
Creates a copy of these EdgeInsets
Checks if all edges are zero
Returns a string representation for debugging
StaticallCreates EdgeInsets with the same value for all edges Similar to CSS: padding: 10px
The value to apply to all edges
StaticfromCreates EdgeInsets from flexible input. Accepts a number (all sides equal), an EdgeInsets instance, or an object with individual sides.
Number, EdgeInsets, or object with edge values
StaticonlyCreates EdgeInsets with specific values for individual edges Similar to CSS: padding-top, padding-right, etc.
Object with optional top, right, bottom, left values (defaults to 0)
StaticsymmetricCreates EdgeInsets with symmetric vertical and horizontal values Similar to CSS: padding: 10px 20px
Value for top and bottom edges
Value for left and right edges
StaticzeroCreates EdgeInsets with zero spacing on all edges Similar to CSS: padding: 0
Represents spacing values for the edges of a box (top, right, bottom, left). Similar to CSS padding/margin syntax.