M4eWalletInfo constructor
Implementation
const M4eWalletInfo({
@required String label,
@required M4eCurrencyType currency,
@required M4eWalletType type,
}) : assert(label != null, 'WalletInfo [label] should not be null'),
assert(currency != null, 'WalletInfo [currency] should not be null'),
assert(type != null, 'WalletInfo [type] should not be null'),
this.label = label,
this.currency = currency,
this.type = type;