ExtraInfo constructor

const ExtraInfo({
  1. required int specVersion,
  2. required String specName,
  3. required int base58Prefix,
  4. required int decimals,
  5. required String tokenSymbol,
})

Implementation

const ExtraInfo({
  required this.specVersion,
  required this.specName,
  required this.base58Prefix,
  required this.decimals,
  required this.tokenSymbol,
});