14 lines
287 B
Dart
14 lines
287 B
Dart
class PaymentSummaryValues {
|
|
final String sentAmount;
|
|
final String fee;
|
|
final String recipientReceives;
|
|
final String total;
|
|
|
|
const PaymentSummaryValues({
|
|
required this.sentAmount,
|
|
required this.fee,
|
|
required this.recipientReceives,
|
|
required this.total,
|
|
});
|
|
}
|