debugFillProperties method

  1. @override
void debugFillProperties(
  1. DiagnosticPropertiesBuilder properties, {
  2. String prefix = '',
})
inherited

Adds all properties prefixing property names with the optional prefix.

Implementation

@override
void debugFillProperties(DiagnosticPropertiesBuilder properties,
    {String prefix = ''}) {
  super.debugFillProperties(properties);
  style.debugFillProperties(properties, prefix: prefix);
}