diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist index 595a98f..51a5801 100644 --- a/ios/Runner/Info.plist +++ b/ios/Runner/Info.plist @@ -61,7 +61,7 @@ This app requires photo library access to select image as document & upload it. UIApplicationSupportsIndirectInputEvents -keen ovr NSSpeechRecognitionUsageDescription + NSSpeechRecognitionUsageDescription This app requires speech recognition access to access voice command features. UIBackgroundModes diff --git a/lib/api/etqan_ovr_api_client.dart b/lib/api/etqan_ovr_api_client.dart index e4b4e61..3f595a4 100644 --- a/lib/api/etqan_ovr_api_client.dart +++ b/lib/api/etqan_ovr_api_client.dart @@ -55,7 +55,7 @@ class EtqanApiClient { (json) { List responseData = []; if (json["ETQAN_GetEmployeeOVRRequests_Response"] != null && json["ETQAN_GetEmployeeOVRRequests_Response"].isNotEmpty) { - json["ETQAN_GetEmployeeOVRRequests_Response"].forEach((Map element) { + json["ETQAN_GetEmployeeOVRRequests_Response"].forEach((element) { responseData.add(EtqanGetEmployeeOvrRequestsResponse.fromJson(element)); }); }