issues property

Issues that were encountered during the creation of this record.

When parsing a file into a stream of records, it is possible that there will be problems. If so, this property is a list of strings describing the problems. If not, then this property will be null.

Implementation

UnmodifiableListView<String>? get issues {
  return _issues == null ? null : UnmodifiableListView(_issues!);
}