operator [] abstract method

T? operator [](
  1. String key
)

Access token value by key using bracket notation

Returns the token value for the given key, or null if not found. Supports both canonical keys (defined in the token class) and custom keys.

Implementation

T? operator [](String key);