implemented hotrecharge changes

This commit is contained in:
2026-05-04 00:06:52 +02:00
parent 7566739665
commit 88c776507d
7 changed files with 170 additions and 121 deletions

View File

@@ -27,11 +27,11 @@ _BillProvider _$BillProviderFromJson(Map<String, dynamic> json) =>
description: json['description'] as String,
requiresAccount: json['requiresAccount'] as bool,
requiresAmount: json['requiresAmount'] as bool,
requiresAmountFromMerchant: json['requiresAmountFromMerchant'] as bool,
requiresAmountFromMerchant: json['requiresAmountFromMerchant'] as bool?,
requiresPhone: json['requiresPhone'] as bool,
requiresReversal: json['requiresReversal'] as bool,
requiresReversal: json['requiresReversal'] as bool?,
additionalDataString: json['additionalDataString'] as String?,
processorType: json['processorType'] as String,
processorType: json['processorType'] as String?,
uid: json['uid'] as String,
image: json['image'] as String,
label: json['label'] as String,