EdgeInsetsDirectionalDelta.add constructor
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;