addToRight method

EdgeInsets addToRight(
  1. double value
)

Adds the specified value to the existing right padding

Implementation

EdgeInsets addToRight(double value) => copyWith(right: this.right + value);