TransferMoneyContent.from constructor

TransferMoneyContent.from({
  1. required String currency,
  2. required num amount,
})

Implementation

TransferMoneyContent.from({required String currency, required num amount})
    : super.fromType(ContentType.TRANSFER, currency: currency, amount: amount);