FixedLengthArray<T> constructor

const FixedLengthArray<T>({
  1. required AbiType<T> type,
  2. required int length,
})

Constructor.

Implementation

const FixedLengthArray({required AbiType<T> type, required this.length})
    : super._(type);