DataLengthPrefix constructor

const DataLengthPrefix({
  1. required String name,
  2. required String symbol,
  3. required BigInt value,
})

Creates a DataLengthPrefix with the given name, symbol, and value.

Implementation

const DataLengthPrefix({
  required this.name,
  required this.symbol,
  required this.value,
});