putIntList method

void putIntList(
  1. String key,
  2. List<int> value
)

Implementation

void putIntList(String key, List<int> value) {
  // unparcel();
  _map[key] = value;
}