M4eWalletInfo constructor
Implementation
factory M4eWalletInfo({
@required String label,
@required String currency,
M4eWalletType type = M4eWalletType.bascule,
}) {
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');
return M4eWalletInfo._(label, currency, type);
}