operator []= method

  1. @alwaysThrows
  2. @override
void operator []=(
  1. int index,
  2. HRow value
)
override

/////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////// This operation is not supported by an unmodifiable list.

Implementation

// Unmodifiable interface
//////////////////////////////////////////////////////////////////////////

  /// This operation is not supported by an unmodifiable list.
  @alwaysThrows
  @override
  void operator []=(int index, HRow value) {
    throw UnsupportedError('Cannot modify an unmodifiable list');
  }