debugFillDrivenStyle method

void debugFillDrivenStyle(
  1. DiagnosticPropertiesBuilder properties
)
inherited

Fills the given diagnostic properties builder with information about the driven style.

Implementation

void debugFillDrivenStyle(DiagnosticPropertiesBuilder properties) {
  properties.add(DiagnosticsProperty('inherits', inherits));
  properties.add(DiagnosticsProperty('selectedStyle', selectedStyle));
  properties
      .add(DiagnosticsProperty('indeterminateStyle', indeterminateStyle));
  properties.add(DiagnosticsProperty('focusedStyle', focusedStyle));
  properties.add(DiagnosticsProperty('hoveredStyle', hoveredStyle));
  properties.add(DiagnosticsProperty('pressedStyle', pressedStyle));
  properties.add(DiagnosticsProperty('disabledStyle', disabledStyle));
}