TransferSentInfo constructor

TransferSentInfo({
  1. required int amountInCents,
  2. required String amountLocalized,
  3. required DateTime createdAt,
  4. required String transferId,
  5. required AccountInfo receiver,
})

Implementation

TransferSentInfo({
  required this.amountInCents,
  required this.amountLocalized,
  required this.createdAt,
  required this.transferId,
  required this.receiver,
});