import 'package:youmazgestion/Components/paymentType.dart'; class PaymentMethod { final PaymentType type; final double amountGiven; PaymentMethod({required this.type, this.amountGiven = 0}); }