DoubleProperty constructor

DoubleProperty(
  1. String name,
  2. double? value,
  3. {String? ifNull,
  4. String? unit,
  5. String? tooltip,
  6. Object? defaultValue = kNoDefaultValue,
  7. bool showName = true,
  8. DiagnosticsTreeStyle style = DiagnosticsTreeStyle.singleLine,
  9. DiagnosticLevel level = DiagnosticLevel.info}
)

If specified, unit describes the unit for the value (e.g. px).

Implementation

DoubleProperty(
  super.name,
  super.value, {
  super.ifNull,
  super.unit,
  super.tooltip,
  super.defaultValue,
  super.showName,
  super.style,
  super.level,
});