DebugIntProperty constructor

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

Create a diagnostics property for integers.

Implementation

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