debugFillProperties method

  1. @override
void debugFillProperties(
  1. DiagnosticPropertiesBuilder properties
)
override

Flutter debug properties override, includes toString.

Implementation

@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
  super.debugFillProperties(properties);
  properties.add(ColorProperty('surface', surface));
  properties.add(ColorProperty('surfaceVariant', surfaceVariant));
  properties.add(ColorProperty('inverseSurface', inverseSurface));
  properties.add(ColorProperty('background', background));
  properties.add(ColorProperty('scaffoldBackground', scaffoldBackground));
  properties.add(ColorProperty('dialogBackground', dialogBackground));
}