EdgeInsetsDelta.add constructor

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

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;