operator [] method

  1. @override
int operator [](
  1. int index
)
override

The object at the given index in the list.

The index must be a valid index of this list, which means that index must be non-negative and less than length.

Implementation

@override
int operator [](int index) {
  final bytes = _bytes;
  if (bytes == null) {
    throw StateError('The bytes have been destroyed');
  }
  return bytes[index];
}