put method

void put(
  1. String key,
  2. dynamic value
)

This method is used to put a value in the session.

Puts a value in the session.

Implementation

void put(String key, dynamic value) {
  _original[key] = value;
}