IssuedCurrency constructor

IssuedCurrency({
  1. required String currency,
  2. required String issuer,
})

Creates an instance of IssuedCurrency with the specified currency and issuer.

Implementation

IssuedCurrency({required this.currency, required this.issuer});