marginLeft property

double? marginLeft
inherited

Implementation

double? get marginLeft => _marginLeft;
void marginLeft=(double? value)
inherited

Implementation

set marginLeft(double? value) {
  if (value != null) {
    value = value >= 0 ? value : 0;
  }
  _marginLeft = value;
}