DebugStringProperty constructor

DebugStringProperty(
  1. String name,
  2. String? value, {
  3. String? description,
  4. String? tooltip,
  5. bool showName = true,
  6. Object? defaultValue = kNoDefaultValue,
  7. bool quoted = true,
  8. String? ifEmpty,
  9. String? ifNull,
})

Create a diagnostics property for strings.

Implementation

DebugStringProperty(
  String super.name,
  super.value, {
  super.description,
  super.tooltip,
  super.showName,
  super.defaultValue,
  this.quoted = true,
  super.ifEmpty,
  super.ifNull,
});