IssuedCurrencyAmount constructor
Factory method to create an instance of IssuedCurrencyAmount.
The value
, currency
, and issuer
parameters represent the components of the amount.
Implementation
factory IssuedCurrencyAmount(
{required String value,
required String currency,
required String issuer}) {
return IssuedCurrencyAmount._(
currency: currency, issuer: issuer, value: value);
}