debugFill method

  1. @protected
  2. @mustCallSuper
void debugFill(
  1. String value
)
inherited

Implementation

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