DoubleProperty.lazy constructor Null safety

DoubleProperty.lazy(
  1. String name,
  2. ComputePropertyValueCallback<double> computeValue,
  3. {String? ifNull,
  4. bool showName = true,
  5. String? unit,
  6. String? tooltip,
  7. Object? defaultValue = kNoDefaultValue,
  8. DiagnosticLevel level = DiagnosticLevel.info}
)

Property with a value that is computed only when needed.

Use if computing the property value may throw an exception or is expensive.

The showName and level arguments must not be null.

Implementation

DoubleProperty.lazy(
  super.name,
  super.computeValue, {
  super.ifNull,
  super.showName,
  super.unit,
  super.tooltip,
  super.defaultValue,
  super.level,
}) : assert(showName != null),
     assert(level != null),
     super.lazy();