binInterval property

double? binInterval

Implementation

double? get binInterval => _binInterval;
void binInterval=(double? value)

Implementation

set binInterval(double? value) {
  if (_binInterval != value) {
    _binInterval = value;
    markNeedsLayout();
  }
}