remove method

DataTypeSamplingScheme? remove(
  1. String type
)

Removes type and its associated value, if present, from the map.

Returns the configuration associated with type before it was removed. Returns null if type was not in the map.

Implementation

DataTypeSamplingScheme? remove(String type) => _map.remove(type);