withLeft method

EdgeInsets withLeft(
  1. double value
)

Creates new EdgeInsets with specified left padding

Implementation

EdgeInsets withLeft(double value) => copyWith(left: value);