operator unary- method
- @override
override
    Returns the EdgeInsetsDirectional object with each dimension negated.
This is the same as multiplying the object by -1.0.
Implementation
@override
EdgeInsetsDirectional operator -() {
  return EdgeInsetsDirectional.fromSTEB(
    -start,
    -top,
    -end,
    -bottom,
  );
}