put method

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

Implementation

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