DebugProperty<T> constructor

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

Implementation

DebugProperty(
  String? name,
  this.value, {
  super.showName,
  super.showSeparator,
  this.description,
  this.ifNull,
  this.ifEmpty,
  this.defaultValue = kNoDefaultValue,
  this.tooltip,
}) : super(name: name);