EdgeInsetsDirectionalDelta.add constructor

const EdgeInsetsDirectionalDelta.add({
  1. double? start,
  2. double? top,
  3. double? end,
  4. double? bottom,
})

Creates an additive modification, adding the specified values to the current edges.

.add(start: 5)(.fromSTEB(10, 20, 30, 40)); // .fromSTEB(15, 20, 30, 40)

Implementation

const factory EdgeInsetsDirectionalDelta.add({double? start, double? top, double? end, double? bottom}) =
    _DirectionalAdd;