DebugDoubleProperty constructor

DebugDoubleProperty(
  1. String name,
  2. double? value, {
  3. String? ifNull,
  4. String? unit,
  5. String? tooltip,
  6. Object? defaultValue = kNoDefaultValue,
  7. bool showName = true,
})

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

Implementation

DebugDoubleProperty(
  super.name,
  super.value, {
  super.ifNull,
  super.unit,
  super.tooltip,
  super.defaultValue,
  super.showName,
});