putDoubleList method

void putDoubleList(
  1. String key,
  2. List<double> value
)

Implementation

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