operator [] abstract method

Future<String?> operator [](
  1. String key
)

Return value which paired with key.

If the given key is not assigned with any values, it returns null.

Implementation

Future<String?> operator [](String key);