BorshVecSized<T> constructor

const BorshVecSized<T>(
  1. BorshAnnotationSized<T> subtype,
  2. int capacity
)

Creates an annotation for a dynamically sized array with sized data types.

Implementation

const BorshVecSized(
  super.subtype,
  this.capacity,
);