FeeItem constructor
FeeItem({
- required Map<
Language, String> title, - required String value,
- DiscountItem? discount,
Implementation
FeeItem({
required this.title,
required this.value,
this.discount,
});