EdgeInsetsDelta.delta constructor
Creates a partial modification of LTRB edges, replacing only the specified edges.
.delta(left: 0)(.fromLTRB(10, 20, 30, 40)); // .fromLTRB(0, 20, 30, 40)
Implementation
const factory EdgeInsetsDelta.delta({double? left, double? top, double? right, double? bottom}) = _Delta;