push<T> method

void push<T>(
  1. String key,
  2. T value
)

Implementation

void push<T>(String key, T value) => _data[key] = value;