EdgeInsetsDelta.delta constructor

const EdgeInsetsDelta.delta({
  1. double? left,
  2. double? top,
  3. double? right,
  4. double? bottom,
})

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;