BaseMoneyContent.fromType constructor
Implementation
BaseMoneyContent.fromType(String msgType, {required String currency, required num amount})
: super.fromType(msgType) {
this['currency'] = currency;
this['amount'] = amount;
}
BaseMoneyContent.fromType(String msgType, {required String currency, required num amount})
: super.fromType(msgType) {
this['currency'] = currency;
this['amount'] = amount;
}