BaseMoneyContent.fromType constructor

BaseMoneyContent.fromType(
  1. String msgType, {
  2. required String currency,
  3. required num amount,
})

Implementation

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