showNormalDistributionCurve property

bool get showNormalDistributionCurve

Implementation

bool get showNormalDistributionCurve => _showNormalDistributionCurve;
set showNormalDistributionCurve (bool value)

Implementation

set showNormalDistributionCurve(bool value) {
  if (_showNormalDistributionCurve != value) {
    _showNormalDistributionCurve = value;
    markNeedsLayout();
  }
}