height property

num height

The total size of the vertical edges. Equal to top + bottom, where null is interpreted as 0px.

Implementation

num get height => (top ?? 0) + (bottom ?? 0);