FrameInsets constructor
Creates explicit edge insets.
Implementation
const FrameInsets({
this.left = 0,
this.top = 0,
this.right = 0,
this.bottom = 0,
}) : assert(left >= 0),
assert(top >= 0),
assert(right >= 0),
assert(bottom >= 0);