BorshArray<T> constructor

const BorshArray<T>(
  1. BorshAnnotation<T> subtype,
  2. int length
)

Creates an annotation for a fixed-length array.

Implementation

const BorshArray(
  super.subtype,
  super.length,
);