DebugEnumProperty<T> constructor

DebugEnumProperty<T>(
  1. String name,
  2. T? value, {
  3. Object? defaultValue = kNoDefaultValue,
})

Create a diagnostics property that displays an enum.

Implementation

DebugEnumProperty(
  String super.name,
  super.value, {
  super.defaultValue,
});