parseAll method

List<VtSgrAttributeData> parseAll()

Parses all currently configured attributes.

Implementation

List<VtSgrAttributeData> parseAll() {
  final out = <VtSgrAttributeData>[];
  while (true) {
    final nextAttr = next();
    if (nextAttr == null) {
      break;
    }
    out.add(nextAttr);
  }
  return out;
}