addToLeft method

EdgeInsets addToLeft(
  1. double value
)

Adds the specified value to the existing left padding

Implementation

EdgeInsets addToLeft(double value) => copyWith(left: this.left + value);