debugFillProperties method
Flutter debug properties override, includes toString.
Implementation
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties.add(ColorProperty('surface', surface));
properties.add(ColorProperty('surfaceDim', surfaceDim));
properties.add(ColorProperty('surfaceBright', surfaceBright));
properties
.add(ColorProperty('surfaceContainerLowest', surfaceContainerLowest));
properties.add(ColorProperty('surfaceContainerLow', surfaceContainerLow));
properties.add(ColorProperty('surfaceContainer', surfaceContainer));
properties.add(ColorProperty('surfaceContainerHigh', surfaceContainerHigh));
properties
.add(ColorProperty('surfaceContainerHighest', surfaceContainerHighest));
properties.add(ColorProperty('inverseSurface', inverseSurface));
properties.add(ColorProperty('scaffoldBackground', scaffoldBackground));
properties.add(ColorProperty('dialogBackground', dialogBackground));
}