EdgeInsetsDelta.add constructor
Creates an additive modification, adding the specified values to the current edges.
.add(left: 5)(.fromLTRB(10, 20, 30, 40)); // .fromLTRB(15, 20, 30, 40)
Implementation
const factory EdgeInsetsDelta.add({double? left, double? top, double? right, double? bottom}) = _Add;