DataLengthPrefix constructor

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

Implementation

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