BorshMap<K, V> constructor

const BorshMap<K, V>(
  1. BorshAnnotation<K> keySubtype,
  2. BorshAnnotation<V> valueSubtype
)

Creates an annotation for a map data type.

Implementation

const BorshMap(
  this.keySubtype,
  this.valueSubtype,
);