put abstract method

FlyToken<T> put(
  1. String key,
  2. T value
)

Put a new value for the given key

Creates a new token instance with the updated value. The original token remains unchanged (immutable pattern).

Implementation

FlyToken<T> put(String key, T value);