operator [] method

String operator [](
  1. int index
)

Returns the error message at index.

Uses the same zero-based bounds semantics as normal Dart indexed access.

Implementation

String operator [](int index) =>
    _dataSet._errorStore.unmodifiable[index].message;