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