marginLeft property

double marginLeft
inherited

Left margin value.

Implementation

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

Change the _marginLeft field value. marginLeftChanged will be invoked only if the field's value has changed.

Implementation

set marginLeft(double value) {
  if (_marginLeft == value) {
    return;
  }
  double from = _marginLeft;
  _marginLeft = value;
  if (hasValidated) {
    marginLeftChanged(from, value);
  }
}