SplitPaymentTransactionTile constructor

const SplitPaymentTransactionTile({
  1. Key? key,
  2. required String paymentMethod,
  3. required String currencySymbol,
  4. required Decimal amount,
  5. required DateTime timestamp,
  6. String? transactionId,
  7. String? description,
  8. required bool isSuccess,
  9. String? cardType,
  10. Widget? leading,
  11. VoidCallback? onTap,
  12. bool isRefund = false,
})

Implementation

const SplitPaymentTransactionTile({
  super.key,
  required this.paymentMethod,
  required this.currencySymbol,
  required this.amount,
  required this.timestamp,
  this.transactionId,
  this.description,
  required this.isSuccess,
  this.cardType,
  this.leading,
  this.onTap,
  this.isRefund = false,
});