ERC20Entity constructor

const ERC20Entity({
  1. required String name,
  2. required String symbol,
  3. required int decimals,
  4. required int chainID,
  5. required String contractAddress,
  6. bool? allowDeletion = false,
})

Implementation

const ERC20Entity({
  required super.name,
  required super.symbol,
  required super.decimals,
  required super.chainID,
  required this.contractAddress,
  this.allowDeletion = false,
});