Icrc1Ledger constructor

Icrc1Ledger({
  1. required Canister ledger,
  2. required String symbol,
  3. required String name,
  4. required int decimals,
  5. required BigInt fee,
  6. String? logo_data_url,
})

Implementation

Icrc1Ledger({
    required this.ledger,
    required this.symbol,
    required this.name,
    required this.decimals,
    required this.fee,
    this.logo_data_url,
});