debugFill method
Implementation
@protected
@mustCallSuper
void debugFill(String value) {
assert(() {
if (_properties.isEmpty) {
_properties.add('');
_properties.add('-' * 78);
_properties.add('$runtimeType');
}
_properties.add(value);
return true;
}());
}