PbMap<K, V>.unmodifiable constructor

PbMap<K, V>.unmodifiable(
  1. PbMap other
)

Implementation

PbMap.unmodifiable(PbMap other)
    : keyFieldType = other.keyFieldType,
      valueFieldType = other.valueFieldType,
      _wrappedMap = Map.unmodifiable(other._wrappedMap),
      _isReadonly = true;