tags property

Additional metadata about the diagnostic.

Implementation

_i2.List<_i3.DiagnosticTag> get tags => (_i5.getProperty(
      this,
      'tags',
    ) as _i2.List)
        .cast()
        .map((i) => _i3.DiagnosticTag.values.byName(i))
        .toList();
void tags=(List<DiagnosticTag> value)

Implementation

set tags(_i2.List<_i3.DiagnosticTag> value) {
  _i5.setProperty(
    this,
    'tags',
    value.map((i) => i.name).toList(),
  );
}