operator [] method

  1. @override
V? operator [](
  1. Object? key
)
override

Gets the value associated with the given key.

Returns the value for the given key, or null if the key is not present. This operation does not trigger reactivity when used for reading.

Implementation

@override
V? operator [](Object? key) => value[key];