operator []= method

  1. @override
void operator []=(
  1. dynamic value,
  2. T item
)
override

You can't not use this function with FirebaseListProvided in case the ids of the provided values dont match. Use the function replace intead.

Implementation

@override
operator []=(value, T item) {
  throw const ShouldNotCall(
      'You should not use this operator. Use the function replace instead.');
}