remove method

  1. @override
V? remove(
  1. Object? key
)
override

This operation is not supported by an unmodifiable map.

Implementation

@override
V? remove(Object? key) {
  throw UnsupportedError('Cannot modify unmodifiable map');
}