diff --git a/android/app/src/main/java/io/mosip/registration_client/api_services/RegistrationApi.java b/android/app/src/main/java/io/mosip/registration_client/api_services/RegistrationApi.java index 4d5861f9..a39d9cca 100644 --- a/android/app/src/main/java/io/mosip/registration_client/api_services/RegistrationApi.java +++ b/android/app/src/main/java/io/mosip/registration_client/api_services/RegistrationApi.java @@ -60,7 +60,7 @@ public void startRegistration(@NonNull List languages, @NonNull String f } @Override - public void evaluateMVELVisible(@NonNull String fieldData, @NonNull String expression, @NonNull RegistrationDataPigeon.Result result) { + public void evaluateMVELVisible(@NonNull String fieldData, @NonNull RegistrationDataPigeon.Result result) { try { FieldSpecDto fieldSpecDto = JsonUtils.jsonStringToJavaObject(fieldData, new TypeReference() { }); @@ -75,7 +75,7 @@ public void evaluateMVELVisible(@NonNull String fieldData, @NonNull String expre } @Override - public void evaluateMVELRequired(@NonNull String fieldData, @NonNull String expression, @NonNull RegistrationDataPigeon.Result result) { + public void evaluateMVELRequired(@NonNull String fieldData, @NonNull RegistrationDataPigeon.Result result) { try { FieldSpecDto fieldSpecDto = JsonUtils.jsonStringToJavaObject(fieldData, new TypeReference() { }); diff --git a/lib/platform_android/registration_service_impl.dart b/lib/platform_android/registration_service_impl.dart index 2f2301ff..ff6cdd21 100644 --- a/lib/platform_android/registration_service_impl.dart +++ b/lib/platform_android/registration_service_impl.dart @@ -12,11 +12,12 @@ import 'package:registration_client/platform_spi/registration_service.dart'; class RegistrationServiceImpl implements RegistrationService { @override - Future startRegistration(List langauages, String flowType, String process) async { + Future startRegistration( + List langauages, String flowType, String process) async { String registrationStartResponse = ''; try { - registrationStartResponse = - await RegistrationDataApi().startRegistration(langauages, flowType, process); + registrationStartResponse = await RegistrationDataApi() + .startRegistration(langauages, flowType, process); } on PlatformException { registrationStartResponse = "Something went wrong!"; debugPrint('RegApi call failed'); @@ -29,11 +30,10 @@ class RegistrationServiceImpl implements RegistrationService { } @override - Future evaluateMVELVisible(String fieldData, String expression) async { + Future evaluateMVELVisible(String fieldData) async { bool isMvelValid = false; try { - isMvelValid = - await RegistrationDataApi().evaluateMVELVisible(fieldData, expression); + isMvelValid = await RegistrationDataApi().evaluateMVELVisible(fieldData); } on PlatformException { debugPrint('RegApi mvel visible call failed'); } catch (e) { @@ -43,11 +43,10 @@ class RegistrationServiceImpl implements RegistrationService { } @override - Future evaluateMVELRequired(String fieldData, String expression) async { + Future evaluateMVELRequired(String fieldData) async { bool isMvelValid = false; try { - isMvelValid = - await RegistrationDataApi().evaluateMVELRequired(fieldData, expression); + isMvelValid = await RegistrationDataApi().evaluateMVELRequired(fieldData); } on PlatformException { debugPrint('RegApi mvel call failed'); } catch (e) { @@ -57,11 +56,12 @@ class RegistrationServiceImpl implements RegistrationService { } @override - Future getPreviewTemplate(bool isPreview, Map templateValues) async { + Future getPreviewTemplate( + bool isPreview, Map templateValues) async { String previewTemplate = ''; try { - previewTemplate = - await RegistrationDataApi().getPreviewTemplate(isPreview,templateValues); + previewTemplate = await RegistrationDataApi() + .getPreviewTemplate(isPreview, templateValues); } on PlatformException { debugPrint('Registration API template call failed'); } catch (e) { @@ -72,7 +72,8 @@ class RegistrationServiceImpl implements RegistrationService { } @override - Future submitRegistrationDto(String makerName) async { + Future submitRegistrationDto( + String makerName) async { late RegistrationSubmitResponse registrationSubmitResponse; try { registrationSubmitResponse = diff --git a/lib/platform_spi/registration_service.dart b/lib/platform_spi/registration_service.dart index 2703f501..435ef6be 100644 --- a/lib/platform_spi/registration_service.dart +++ b/lib/platform_spi/registration_service.dart @@ -9,10 +9,12 @@ import 'package:registration_client/pigeon/registration_data_pigeon.dart'; import 'package:registration_client/platform_android/registration_service_impl.dart'; abstract class RegistrationService { - Future startRegistration(List languages, String flopwType, String process); - Future evaluateMVELVisible(String fieldData, String expression); - Future evaluateMVELRequired(String fieldData, String expression); - Future getPreviewTemplate(bool isPreview,Map templateValues); + Future startRegistration( + List languages, String flopwType, String process); + Future evaluateMVELVisible(String fieldData); + Future evaluateMVELRequired(String fieldData); + Future getPreviewTemplate( + bool isPreview, Map templateValues); Future submitRegistrationDto(String makerName); factory RegistrationService() => getRegistrationServiceImpl(); diff --git a/lib/provider/global_provider.dart b/lib/provider/global_provider.dart index c868dcee..1e5afc6e 100644 --- a/lib/provider/global_provider.dart +++ b/lib/provider/global_provider.dart @@ -43,7 +43,7 @@ class GlobalProvider with ChangeNotifier { final formKey = GlobalKey(); final updateFieldKey = GlobalKey(); String _updateUINNumber = ""; - String _onboardingProcessName=""; + String _onboardingProcessName = ""; bool _isPageChanged = false; String get updateUINNumber => _updateUINNumber; String get onboardingProcessName => _onboardingProcessName; @@ -51,8 +51,7 @@ class GlobalProvider with ChangeNotifier { bool _preRegControllerRefresh = false; bool get preRegControllerRefresh => _preRegControllerRefresh; - - set isPageChanged(bool value){ + set isPageChanged(bool value) { _isPageChanged = value; notifyListeners(); } @@ -322,7 +321,7 @@ class GlobalProvider with ChangeNotifier { notifyListeners(); } - setPreRegistrationId(String value){ + setPreRegistrationId(String value) { _preRegId = value; notifyListeners(); } @@ -444,9 +443,9 @@ class GlobalProvider with ChangeNotifier { String x = ''; for (var i in chosenLang) { String code = languageToCodeMapper[i]!; - if(label[code] != null) { - x = "$x${label[code] ?? ""}/ "; - } + if (label[code] != null) { + x = "$x${label[code] ?? ""}/ "; + } } return x.isEmpty ? x : x.substring(0, x.length - 2); } @@ -797,7 +796,7 @@ class GlobalProvider with ChangeNotifier { } removeSelectedUpdateFieldKey(String key) { - _selectedUpdateFields.remove(key); + _selectedUpdateFields.remove(key); notifyListeners(); } diff --git a/lib/provider/registration_task_provider.dart b/lib/provider/registration_task_provider.dart index d5578617..b58bca46 100644 --- a/lib/provider/registration_task_provider.dart +++ b/lib/provider/registration_task_provider.dart @@ -117,13 +117,12 @@ class RegistrationTaskProvider with ChangeNotifier { notifyListeners(); } - evaluateMVELVisible(String fieldData, String expression) async { - return await registrationService.evaluateMVELVisible(fieldData, expression); + evaluateMVELVisible(String fieldData) async { + return await registrationService.evaluateMVELVisible(fieldData); } - evaluateMVELRequired(String fieldData, String expression) async { - return await registrationService.evaluateMVELRequired( - fieldData, expression); + evaluateMVELRequired(String fieldData) async { + return await registrationService.evaluateMVELRequired(fieldData); } setPreviewTemplate(String value) { diff --git a/lib/ui/machine_keys.dart b/lib/ui/machine_keys.dart index 0d1c0489..2c7c7d48 100644 --- a/lib/ui/machine_keys.dart +++ b/lib/ui/machine_keys.dart @@ -6,7 +6,6 @@ */ import 'dart:convert'; -import 'dart:developer'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; @@ -147,7 +146,6 @@ class _MachineKeysState extends State { onTap: () { Clipboard.setData(ClipboardData(text: machineDetails)).then((value) { showInSnackBar(appLocalizations.copy_message); - log("machine details: $machineDetails"); }); }, child: Container( diff --git a/lib/ui/onboard/home_page.dart b/lib/ui/onboard/home_page.dart index cc85c67c..ec3b5403 100644 --- a/lib/ui/onboard/home_page.dart +++ b/lib/ui/onboard/home_page.dart @@ -8,7 +8,6 @@ import 'dart:developer'; import 'package:flutter/material.dart'; -import 'package:flutter/services.dart'; import 'package:flutter_svg/flutter_svg.dart'; import 'package:intl/intl.dart'; diff --git a/lib/ui/process_ui/new_process.dart b/lib/ui/process_ui/new_process.dart index a6e8af11..7f13570f 100644 --- a/lib/ui/process_ui/new_process.dart +++ b/lib/ui/process_ui/new_process.dart @@ -25,8 +25,6 @@ import 'package:registration_client/provider/connectivity_provider.dart'; import 'package:registration_client/provider/global_provider.dart'; import 'package:registration_client/provider/registration_task_provider.dart'; -import 'package:registration_client/ui/common/tablet_header.dart'; -import 'package:registration_client/ui/common/tablet_navbar.dart'; import 'package:registration_client/ui/post_registration/acknowledgement_page.dart'; import 'package:registration_client/ui/post_registration/preview_page.dart'; @@ -205,20 +203,20 @@ class _NewProcessState extends State with WidgetsBindingObserver { await globalProvider.getAudit("REG-EVT-003", "REG-MOD-103"); } - setScrollToTop(){ - scrollController.animateTo( - scrollController.position.minScrollExtent, - duration: const Duration(milliseconds: 500), - curve: Curves.easeOut, - ); - globalProvider.isPageChanged = false; + setScrollToTop() { + scrollController.animateTo( + scrollController.position.minScrollExtent, + duration: const Duration(milliseconds: 500), + curve: Curves.easeOut, + ); + globalProvider.isPageChanged = false; } bool continueButton = false; @override Widget build(BuildContext context) { WidgetsBinding.instance.addPostFrameCallback((timeStamp) { - if(globalProvider.isPageChanged){ + if (globalProvider.isPageChanged) { setScrollToTop(); } }); @@ -235,17 +233,15 @@ class _NewProcessState extends State with WidgetsBindingObserver { final Process newProcess = arguments["process"]; int size = newProcess.screens!.length; - evaluateMVELVisible( - String fieldData, String? engine, String? expression, Field e) async { - bool visible = await registrationTaskProvider.evaluateMVELVisible( - fieldData, expression!); + evaluateMVELVisible(String fieldData) async { + bool visible = + await registrationTaskProvider.evaluateMVELVisible(fieldData); return visible; } - evaluateMVELRequired( - String fieldData, String? engine, String? expression, Field e) async { - bool required = await registrationTaskProvider.evaluateMVELRequired( - fieldData, expression!); + evaluateMVELRequired(String fieldData) async { + bool required = + await registrationTaskProvider.evaluateMVELRequired(fieldData); return required; } @@ -416,15 +412,9 @@ class _NewProcessState extends State with WidgetsBindingObserver { if (screen.fields!.elementAt(i)!.requiredOn != null && screen.fields!.elementAt(i)!.requiredOn!.isNotEmpty) { bool visible = await evaluateMVELVisible( - jsonEncode(screen.fields!.elementAt(i)!.toJson()), - screen.fields!.elementAt(i)!.requiredOn?[0]?.engine, - screen.fields!.elementAt(i)!.requiredOn?[0]?.expr, - screen.fields!.elementAt(i)!); + jsonEncode(screen.fields!.elementAt(i)!.toJson())); bool required = await evaluateMVELRequired( - jsonEncode(screen.fields!.elementAt(i)!.toJson()), - screen.fields!.elementAt(i)!.requiredOn?[0]?.engine, - screen.fields!.elementAt(i)!.requiredOn?[0]?.expr, - screen.fields!.elementAt(i)!); + jsonEncode(screen.fields!.elementAt(i)!.toJson())); if (visible && required) { if (screen.fields!.elementAt(i)!.inputRequired!) { if (!(globalProvider.fieldInputValue @@ -581,10 +571,11 @@ class _NewProcessState extends State with WidgetsBindingObserver { } customValidation(globalProvider.newProcessTabIndex).then((value) { - continueButton = value && - globalProvider.formKey.currentState != null && - globalProvider.formKey.currentState!.validate(); - + setState(() { + continueButton = value && + globalProvider.formKey.currentState != null && + globalProvider.formKey.currentState!.validate(); + }); if (globalProvider.newProcessTabIndex >= size) { continueButton = true; } diff --git a/lib/ui/process_ui/update_process.dart b/lib/ui/process_ui/update_process.dart index ae929ee8..c8b31778 100644 --- a/lib/ui/process_ui/update_process.dart +++ b/lib/ui/process_ui/update_process.dart @@ -25,8 +25,6 @@ import 'package:registration_client/provider/connectivity_provider.dart'; import 'package:registration_client/provider/global_provider.dart'; import 'package:registration_client/provider/registration_task_provider.dart'; -import 'package:registration_client/ui/common/tablet_header.dart'; -import 'package:registration_client/ui/common/tablet_navbar.dart'; import 'package:registration_client/ui/post_registration/acknowledgement_page.dart'; import 'package:registration_client/ui/post_registration/preview_page.dart'; diff --git a/lib/ui/process_ui/widgets/age_date_control.dart b/lib/ui/process_ui/widgets/age_date_control.dart index 64467552..68b24744 100644 --- a/lib/ui/process_ui/widgets/age_date_control.dart +++ b/lib/ui/process_ui/widgets/age_date_control.dart @@ -5,8 +5,6 @@ * */ -import 'dart:math'; - import 'package:flutter/material.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; @@ -46,8 +44,8 @@ class _AgeDateControlState extends State { globalProvider = Provider.of(context, listen: false); registrationTaskProvider = Provider.of(context, listen: false); - _getSavedDate(); }); + _getSavedDate(); super.initState(); } diff --git a/lib/ui/process_ui/widgets/dropdown_control.dart b/lib/ui/process_ui/widgets/dropdown_control.dart index 20f942c5..0894a188 100644 --- a/lib/ui/process_ui/widgets/dropdown_control.dart +++ b/lib/ui/process_ui/widgets/dropdown_control.dart @@ -5,6 +5,8 @@ * */ +import 'dart:developer'; + import 'package:flutter/material.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; @@ -48,9 +50,34 @@ class _CustomDropDownState extends State { registrationTaskProvider = Provider.of(context, listen: false); setHierarchyReverse(); + // initializeValue(); super.initState(); } + initializeValue() { + String langCode = globalProvider.selectedLanguage; + if (_isFieldIdPresent()) { + GenericData? response; + if (widget.field.type == 'simpleType') { + if ((globalProvider.fieldInputValue[ + "${widget.field.group}${widget.field.subType}"] + as Map) + .containsKey(langCode)) { + response = globalProvider.fieldInputValue[ + "${widget.field.group}${widget.field.subType}"][langCode] + as GenericData; + } + } else { + response = globalProvider + .fieldInputValue["${widget.field.group}${widget.field.subType}"] + as GenericData; + } + setState(() { + selected = response; + }); + } + } + setHierarchyReverse() { maxLen = globalProvider.hierarchyReverse.length; } @@ -64,7 +91,7 @@ class _CustomDropDownState extends State { _getOptionsList(); } - void saveData(value) async{ + void saveData(value) async { for (int i = index! + 1; i < maxLen; i++) { registrationTaskProvider .removeDemographicField(globalProvider.hierarchyReverse[i]); @@ -73,11 +100,9 @@ class _CustomDropDownState extends State { if (widget.field.type == 'simpleType') { for (var element in globalProvider.chosenLang) { List temp; - String code = - globalProvider.languageToCodeMapper[element]!; + String code = globalProvider.languageToCodeMapper[element]!; if (index == 1) { - temp = - await _getLocationValues("$index", code); + temp = await _getLocationValues("$index", code); } else { var parentCode = context .read() @@ -85,10 +110,9 @@ class _CustomDropDownState extends State { temp = await _getLocationValuesBasedOnParent( parentCode, widget.field.subType!, code); } - for(var item in temp){ - if(item!.code == value.code){ - registrationTaskProvider - .addSimpleTypeDemographicField( + for (var item in temp) { + if (item!.code == value.code) { + registrationTaskProvider.addSimpleTypeDemographicField( widget.field.id ?? "", item.name, code); } } @@ -153,25 +177,24 @@ class _CustomDropDownState extends State { Future> _getLocationValues( String hierarchyLevelName, String langCode) async { - List languages =[]; + List languages = []; for (var lang in globalProvider.chosenLang) { String langCode = globalProvider.langToCode(lang); languages.add(langCode); } return await registrationTaskProvider.getLocationValues( - hierarchyLevelName, langCode,languages); + hierarchyLevelName, langCode, languages); } Future> _getLocationValuesBasedOnParent( String? parentCode, String hierarchyLevelName, String langCode) async { - List selectedLang =[]; + List selectedLang = []; for (var lang in globalProvider.chosenLang) { String langCode = globalProvider.langToCode(lang); selectedLang.add(langCode); } - return await registrationTaskProvider - .getLocationValuesBasedOnParent( - parentCode, hierarchyLevelName, langCode,selectedLang); + return await registrationTaskProvider.getLocationValuesBasedOnParent( + parentCode, hierarchyLevelName, langCode, selectedLang); } _isFieldIdPresent() { @@ -245,7 +268,8 @@ class _CustomDropDownState extends State { items: list .map((option) => DropdownMenuItem( value: option, - child: Text(option!.concatenatedName??option.name), + child: + Text(option!.concatenatedName ?? option.name), )) .toList(), autovalidateMode: AutovalidateMode.onUserInteraction, @@ -261,16 +285,18 @@ class _CustomDropDownState extends State { } } if (value == null) { + log("validation $value"); return AppLocalizations.of(context)!.select_value_message; } if (!widget.validation.hasMatch(value.name)) { + log("validation match $value"); return AppLocalizations.of(context)!.select_value_message; } return null; }, onChanged: (value) { if (value != selected) { - saveData(value); + saveData(value); _saveDataToMap(value); globalProvider.setLocationHierarchy( widget.field.group!, value!.code, index!); diff --git a/lib/ui/process_ui/widgets/dynamic_dropdown_control.dart b/lib/ui/process_ui/widgets/dynamic_dropdown_control.dart index 000f93de..6d8db9b3 100644 --- a/lib/ui/process_ui/widgets/dynamic_dropdown_control.dart +++ b/lib/ui/process_ui/widgets/dynamic_dropdown_control.dart @@ -50,16 +50,16 @@ class _CustomDynamicDropDownState extends State { super.initState(); } - void saveData(value) async{ + void saveData(value) async { if (value != null) { if (widget.field.type == 'simpleType') { for (var element in globalProvider.chosenLang) { String code = globalProvider.languageToCodeMapper[element]!; - List temp = await _getFieldValues(widget.field.id!, code); - for(var item in temp){ - if(item!.code == value.code){ - registrationTaskProvider - .addSimpleTypeDemographicField( + List temp = + await _getFieldValues(widget.field.id!, code); + for (var item in temp) { + if (item!.code == value.code) { + registrationTaskProvider.addSimpleTypeDemographicField( widget.field.id ?? "", item.name, code); } } @@ -117,25 +117,26 @@ class _CustomDynamicDropDownState extends State { } } - Future> _getFieldValues(String fieldId, String langCode) async { - List selectedLang =[]; + Future> _getFieldValues( + String fieldId, String langCode) async { + List selectedLang = []; for (var lang in globalProvider.chosenLang) { String langCode = globalProvider.langToCode(lang); selectedLang.add(langCode); } - return await registrationTaskProvider - .getFieldValues(fieldId, langCode, selectedLang); + return await registrationTaskProvider.getFieldValues( + fieldId, langCode, selectedLang); } @override Widget build(BuildContext context) { - String lang = globalProvider.selectedLanguage; - if (context - .read() - .fieldInputValue - .containsKey(widget.field.id ?? "")) { - _getSelectedValueFromMap(lang); - } + // String lang = globalProvider.selectedLanguage; + // if (context + // .read() + // .fieldInputValue + // .containsKey(widget.field.id ?? "")) { + // _getSelectedValueFromMap(lang); + // } bool isPortrait = MediaQuery.of(context).orientation == Orientation.portrait; return FutureBuilder( diff --git a/lib/ui/process_ui/widgets/gender_control.dart b/lib/ui/process_ui/widgets/gender_control.dart index de231dff..c764876a 100644 --- a/lib/ui/process_ui/widgets/gender_control.dart +++ b/lib/ui/process_ui/widgets/gender_control.dart @@ -49,11 +49,12 @@ class _CustomDynamicDropDownState extends State { } else { fieldValueData = await context .read() - .getFieldValues(widget.field.subType!, lang, globalProvider.chosenLang); + .getFieldValues( + widget.field.subType!, lang, globalProvider.chosenLang); setState(() { selected = fieldValueData[0]!.name; }); - saveData(fieldValueData[0]!.code,fieldValueData[0]!.name); + saveData(fieldValueData[0]!.code, fieldValueData[0]!.name); _saveDataToMap(selected); } }); @@ -61,17 +62,16 @@ class _CustomDynamicDropDownState extends State { super.initState(); } - void saveData(value,name) { + void saveData(value, name) { if (widget.field.type == 'simpleType') { for (var element in globalProvider.chosenLang) { - String code = - globalProvider.languageToCodeMapper[element]!; - registrationTaskProvider - .addSimpleTypeDemographicField(widget.field.id ?? "", value, code); + String code = globalProvider.languageToCodeMapper[element]!; + registrationTaskProvider.addSimpleTypeDemographicField( + widget.field.id ?? "", value, code); } } else { - registrationTaskProvider - .addDemographicField(widget.field.id ?? "", value); + registrationTaskProvider.addDemographicField( + widget.field.id ?? "", value); } } @@ -79,34 +79,33 @@ class _CustomDynamicDropDownState extends State { String lang = globalProvider.mandatoryLanguages[0]!; if (widget.field.type == 'simpleType') { globalProvider.setLanguageSpecificValue( - widget.field.id ?? "", - value, - lang, - globalProvider.fieldInputValue, - ); + widget.field.id ?? "", + value, + lang, + globalProvider.fieldInputValue, + ); } else { globalProvider.setInputMapValue( - widget.field.id ?? "", - value, - globalProvider.fieldInputValue, - ); + widget.field.id ?? "", + value, + globalProvider.fieldInputValue, + ); } } Future _getSelectedValueFromMap(String lang) async { - List data = await registrationTaskProvider - .getFieldValues(widget.field.subType!, "eng", globalProvider.chosenLang); + List data = + await registrationTaskProvider.getFieldValues( + widget.field.subType!, "eng", globalProvider.chosenLang); String response = data[0]!.name; if (widget.field.type == 'simpleType') { if ((globalProvider.fieldInputValue[widget.field.id ?? ""] as Map) .containsKey(lang)) { - response = globalProvider - .fieldInputValue[widget.field.id ?? ""][lang]; + response = globalProvider.fieldInputValue[widget.field.id ?? ""][lang]; } } else { - response = - globalProvider.fieldInputValue[widget.field.id ?? ""]; + response = globalProvider.fieldInputValue[widget.field.id ?? ""]; } setState(() { selected = response; @@ -122,8 +121,8 @@ class _CustomDynamicDropDownState extends State { .getFieldValues(fieldId, langC, globalProvider.chosenLang); if (data.isEmpty) { - data = await registrationTaskProvider - .getFieldValues(fieldId, 'eng', globalProvider.chosenLang); + data = await registrationTaskProvider.getFieldValues( + fieldId, 'eng', globalProvider.chosenLang); } labelsData.add(data); } @@ -145,11 +144,9 @@ class _CustomDynamicDropDownState extends State { Widget build(BuildContext context) { bool isPortrait = MediaQuery.of(context).orientation == Orientation.portrait; - String mandatoryLangCode = - globalProvider.mandatoryLanguages[0] ?? "eng"; - String mandatoryLang = globalProvider - .codeToLanguageMapper[mandatoryLangCode] ?? - "English"; + String mandatoryLangCode = globalProvider.mandatoryLanguages[0] ?? "eng"; + String mandatoryLang = + globalProvider.codeToLanguageMapper[mandatoryLangCode] ?? "English"; return FutureBuilder( future: _getFieldValues(widget.field.subType!, "eng"), @@ -158,7 +155,8 @@ class _CustomDynamicDropDownState extends State { return Card( elevation: 5, color: pureWhite, - margin: EdgeInsets.symmetric(vertical: 1.h, horizontal: isPortrait ? 16.w : 0), + margin: EdgeInsets.symmetric( + vertical: 1.h, horizontal: isPortrait ? 16.w : 0), child: Padding( padding: EdgeInsets.symmetric(vertical: 24.h, horizontal: 16.w), child: Column( @@ -178,10 +176,15 @@ class _CustomDynamicDropDownState extends State { return Padding( padding: const EdgeInsets.only(right: 8), child: Column( - children: globalProvider - .chosenLang + children: globalProvider.chosenLang .map((e) => Chip( label: Text(e), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.all( + Radius.zero), + side: + BorderSide(color: appWhite), + ), labelStyle: Theme.of(context) .textTheme .bodySmall, @@ -199,9 +202,7 @@ class _CustomDynamicDropDownState extends State { return Padding( padding: const EdgeInsets.only(right: 6), child: Column( - children: globalProvider - .chosenLang - .map( + children: globalProvider.chosenLang.map( (lang) { bool isMandatoryLang = lang == mandatoryLang; @@ -212,8 +213,8 @@ class _CustomDynamicDropDownState extends State { selected = e[mandatoryLang] ?? ""; }); for (var e in fieldValueData) { - if(e!.name == selected){ - saveData(e.code,e.name); + if (e!.name == selected) { + saveData(e.code, e.name); } } _saveDataToMap(e[mandatoryLang]); diff --git a/lib/ui/process_ui/widgets/new_process_screen_content.dart b/lib/ui/process_ui/widgets/new_process_screen_content.dart index 3c13a766..2c67bf5c 100644 --- a/lib/ui/process_ui/widgets/new_process_screen_content.dart +++ b/lib/ui/process_ui/widgets/new_process_screen_content.dart @@ -128,11 +128,8 @@ class _NewProcessScreenContentState extends State { } } - evaluateMVELVisible( - String fieldData, String? engine, String? expression, Field e) async { - registrationTaskProvider - .evaluateMVELVisible(fieldData, expression!) - .then((value) { + evaluateMVELVisible(String fieldData, Field e) async { + registrationTaskProvider.evaluateMVELVisible(fieldData).then((value) { if (!value) { globalProvider.removeFieldFromMap( e.id!, globalProvider.fieldInputValue); @@ -142,11 +139,8 @@ class _NewProcessScreenContentState extends State { }); } - evaluateMVELRequired( - String fieldData, String? engine, String? expression, Field e) async { - registrationTaskProvider - .evaluateMVELRequired(fieldData, expression!) - .then((value) { + evaluateMVELRequired(String fieldData, Field e) async { + registrationTaskProvider.evaluateMVELRequired(fieldData).then((value) { globalProvider.setMvelRequiredFields(e.id!, value); }); } @@ -154,10 +148,8 @@ class _NewProcessScreenContentState extends State { _checkMvelVisible(Field e) async { if (e.required == false) { if (e.requiredOn != null && e.requiredOn!.isNotEmpty) { - await evaluateMVELVisible(jsonEncode(e.toJson()), - e.requiredOn?[0]?.engine, e.requiredOn?[0]?.expr, e); - await evaluateMVELRequired(jsonEncode(e.toJson()), - e.requiredOn?[0]?.engine, e.requiredOn?[0]?.expr, e); + await evaluateMVELVisible(jsonEncode(e.toJson()), e); + await evaluateMVELRequired(jsonEncode(e.toJson()), e); } } } @@ -166,30 +158,34 @@ class _NewProcessScreenContentState extends State { Widget build(BuildContext context) { return Column( children: [ - if(widget.screen.preRegFetchRequired==true)...[ - PreRegDataControl(screen:widget.screen,onFetched: (){ - setState(() { - refreshValue = 1; - }); - }), + if (widget.screen.preRegFetchRequired == true) ...[ + PreRegDataControl( + screen: widget.screen, + onFetched: () { + setState(() { + refreshValue = 1; + }); + }), ], - (context.watch().preRegControllerRefresh) ? const CircularProgressIndicator() : Form( - key: context.watch().formKey, - child: Column( - children: [ - ...widget.screen.fields!.map((e) { - _checkMvelVisible(e!); - if (e.inputRequired == true) { - if (context.watch().mvelVisibleFields[e.id] ?? - true) { - return widgetType(e); - } - } - return Container(); - }).toList(), - ], - ), - ), + (context.watch().preRegControllerRefresh) + ? const CircularProgressIndicator() + : Form( + key: context.watch().formKey, + child: Column( + children: [ + ...widget.screen.fields!.map((e) { + _checkMvelVisible(e!); + if (context + .watch() + .mvelVisibleFields[e.id] ?? + true) { + return widgetType(e); + } + return Container(); + }).toList(), + ], + ), + ), ], ); } diff --git a/lib/ui/process_ui/widgets/update_process_screen_content.dart b/lib/ui/process_ui/widgets/update_process_screen_content.dart index db8b2252..6305b8b6 100644 --- a/lib/ui/process_ui/widgets/update_process_screen_content.dart +++ b/lib/ui/process_ui/widgets/update_process_screen_content.dart @@ -134,11 +134,8 @@ class _UpdateProcessScreenContentState } } - evaluateMVELVisible( - String fieldData, String? engine, String? expression, Field e) async { - registrationTaskProvider - .evaluateMVELVisible(fieldData, expression!) - .then((value) { + evaluateMVELVisible(String fieldData, Field e) async { + registrationTaskProvider.evaluateMVELVisible(fieldData).then((value) { if (!value) { globalProvider.removeFieldFromMap( e.id!, globalProvider.fieldInputValue); @@ -148,11 +145,8 @@ class _UpdateProcessScreenContentState }); } - evaluateMVELRequired( - String fieldData, String? engine, String? expression, Field e) async { - registrationTaskProvider - .evaluateMVELRequired(fieldData, expression!) - .then((value) { + evaluateMVELRequired(String fieldData, Field e) async { + registrationTaskProvider.evaluateMVELRequired(fieldData).then((value) { if (!value && globalProvider.selectedUpdateFields[e.group] == null) { globalProvider.removeFieldFromMap( e.id!, globalProvider.fieldInputValue); @@ -164,10 +158,8 @@ class _UpdateProcessScreenContentState checkMvelVisible(Field e) async { if (e.requiredOn != null && e.requiredOn!.isNotEmpty) { - await evaluateMVELVisible(jsonEncode(e.toJson()), - e.requiredOn?[0]?.engine, e.requiredOn?[0]?.expr, e); - await evaluateMVELRequired(jsonEncode(e.toJson()), - e.requiredOn?[0]?.engine, e.requiredOn?[0]?.expr, e); + await evaluateMVELVisible(jsonEncode(e.toJson()), e); + await evaluateMVELRequired(jsonEncode(e.toJson()), e); } } diff --git a/pigeon/registration_data.dart b/pigeon/registration_data.dart index e9c28c4d..bab4058a 100644 --- a/pigeon/registration_data.dart +++ b/pigeon/registration_data.dart @@ -13,13 +13,14 @@ class RegistrationSubmitResponse { @HostApi() abstract class RegistrationDataApi { @async - String startRegistration(List languages, String flowType, String process); + String startRegistration( + List languages, String flowType, String process); @async - bool evaluateMVELVisible(String fieldData, String expression); - + bool evaluateMVELVisible(String fieldData); + @async - bool evaluateMVELRequired(String fieldData, String expression); + bool evaluateMVELRequired(String fieldData); @async String getPreviewTemplate(bool isPreview, Map templateValues); diff --git a/pubspec.lock b/pubspec.lock index 98db5b53..a371c6a6 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -6,7 +6,7 @@ packages: description: name: _fe_analyzer_shared sha256: ae92f5d747aee634b87f89d9946000c2de774be1d6ac3e58268224348cd0101a - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "61.0.0" analyzer: @@ -14,7 +14,7 @@ packages: description: name: analyzer sha256: ea3d8652bda62982addfd92fdc2d0214e5f82e43325104990d4f4c4a2a313562 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "5.13.0" android_alarm_manager_plus: @@ -22,7 +22,7 @@ packages: description: name: android_alarm_manager_plus sha256: "84720c8ad2758aabfbeafd24a8c355d8c8dd3aa52b01eaf3bb827c7210f61a91" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "3.0.4" archive: @@ -30,7 +30,7 @@ packages: description: name: archive sha256: cb6a278ef2dbb298455e1a713bda08524a175630ec643a242c399c932a0a1f7d - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "3.6.1" args: @@ -38,7 +38,7 @@ packages: description: name: args sha256: "7cf60b9f0cc88203c5a190b4cd62a99feea42759a7fa695010eb5de1c0b2252a" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.5.0" async: @@ -46,7 +46,7 @@ packages: description: name: async sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.11.0" barcode: @@ -54,7 +54,7 @@ packages: description: name: barcode sha256: ab180ce22c6555d77d45f0178a523669db67f95856e3378259ef2ffeb43e6003 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.2.8" bidi: @@ -62,7 +62,7 @@ packages: description: name: bidi sha256: "1a7d0c696324b2089f72e7671fd1f1f64fef44c980f3cebc84e803967c597b63" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.0.10" boolean_selector: @@ -70,7 +70,7 @@ packages: description: name: boolean_selector sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.1.1" build: @@ -78,7 +78,7 @@ packages: description: name: build sha256: "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.4.1" build_config: @@ -86,47 +86,47 @@ packages: description: name: build_config sha256: bf80fcfb46a29945b423bd9aad884590fb1dc69b330a4d4700cac476af1708d1 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.1.1" build_daemon: dependency: transitive description: name: build_daemon - sha256: "0343061a33da9c5810b2d6cee51945127d8f4c060b7fbdd9d54917f0a3feaaa1" - url: "https://pub.dev" + sha256: "79b2aef6ac2ed00046867ed354c88778c9c0f029df8a20fe10b5436826721ef9" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "4.0.1" + version: "4.0.2" build_resolvers: dependency: transitive description: name: build_resolvers sha256: "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.4.2" build_runner: dependency: "direct dev" description: name: build_runner - sha256: "3ac61a79bfb6f6cc11f693591063a7f19a7af628dc52f141743edac5c16e8c22" - url: "https://pub.dev" + sha256: "644dc98a0f179b872f612d3eb627924b578897c629788e858157fa5e704ca0c7" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.4.9" + version: "2.4.11" build_runner_core: dependency: transitive description: name: build_runner_core - sha256: "4ae8ffe5ac758da294ecf1802f2aff01558d8b1b00616aa7538ea9a8a5d50799" - url: "https://pub.dev" + sha256: e3c79f69a64bdfcd8a776a3c28db4eb6e3fb5356d013ae5eb2e52007706d5dbe + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "7.3.0" + version: "7.3.1" built_collection: dependency: transitive description: name: built_collection sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "5.1.1" built_value: @@ -134,7 +134,7 @@ packages: description: name: built_value sha256: c7913a9737ee4007efedaffc968c049fd0f3d0e49109e778edc10de9426005cb - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "8.9.2" characters: @@ -142,7 +142,7 @@ packages: description: name: characters sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.3.0" checked_yaml: @@ -150,7 +150,7 @@ packages: description: name: checked_yaml sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.0.3" cli_util: @@ -158,7 +158,7 @@ packages: description: name: cli_util sha256: c05b7406fdabc7a49a3929d4af76bcaccbbffcbcdcf185b082e1ae07da323d19 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.4.1" clock: @@ -166,7 +166,7 @@ packages: description: name: clock sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.1.1" code_builder: @@ -174,23 +174,23 @@ packages: description: name: code_builder sha256: f692079e25e7869c14132d39f223f8eec9830eb76131925143b2129c4bb01b37 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "4.10.0" collection: dependency: transitive description: name: collection - sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687 - url: "https://pub.dev" + sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "1.17.2" + version: "1.18.0" colorful_progress_indicators: dependency: "direct main" description: name: colorful_progress_indicators sha256: "5a37014775368b37ebfcd9a47e758785438b2bd7ccbf3d6ec8066cb37207d87f" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.0.2" connectivity_plus: @@ -198,7 +198,7 @@ packages: description: name: connectivity_plus sha256: "77a180d6938f78ca7d2382d2240eb626c0f6a735d0bfdce227d8ffb80f95c48b" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "4.0.2" connectivity_plus_platform_interface: @@ -206,7 +206,7 @@ packages: description: name: connectivity_plus_platform_interface sha256: cf1d1c28f4416f8c654d7dc3cd638ec586076255d407cef3ddbdaf178272a71a - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.2.4" convert: @@ -214,23 +214,23 @@ packages: description: name: convert sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "3.1.1" cross_file: dependency: transitive description: name: cross_file - sha256: "2f9d2cbccb76127ba28528cb3ae2c2326a122446a83de5a056aaa3880d3882c5" - url: "https://pub.dev" + sha256: "7caf6a750a0c04effbb52a676dce9a4a592e10ad35c34d6d2d0e4811160d5670" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "0.3.3+7" + version: "0.3.4+2" crypto: dependency: transitive description: name: crypto sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "3.0.3" csslib: @@ -238,7 +238,7 @@ packages: description: name: csslib sha256: "831883fb353c8bdc1d71979e5b342c7d88acfbc643113c14ae51e2442ea0f20f" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.17.3" cupertino_icons: @@ -246,7 +246,7 @@ packages: description: name: cupertino_icons sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.0.8" dart_style: @@ -254,7 +254,7 @@ packages: description: name: dart_style sha256: "1efa911ca7086affd35f463ca2fc1799584fb6aa89883cf0af8e3664d6a02d55" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.3.2" dbus: @@ -262,7 +262,7 @@ packages: description: name: dbus sha256: "365c771ac3b0e58845f39ec6deebc76e3276aa9922b0cc60840712094d9047ac" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.7.10" document_scanner: @@ -270,7 +270,7 @@ packages: description: name: document_scanner sha256: "6e0663f86cf7182a98d9a98f2dd8de82eeb3685dfa19282e5d3e1802f6b8b6e5" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.2.1" dotted_border: @@ -278,7 +278,7 @@ packages: description: name: dotted_border sha256: "108837e11848ca776c53b30bc870086f84b62ed6e01c503ed976e8f8c7df9c04" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.1.0" dropdown_button2: @@ -286,7 +286,7 @@ packages: description: name: dropdown_button2 sha256: b0fe8d49a030315e9eef6c7ac84ca964250155a6224d491c1365061bc974a9e1 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.3.9" fake_async: @@ -294,7 +294,7 @@ packages: description: name: fake_async sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.3.1" faker: @@ -302,31 +302,31 @@ packages: description: name: faker sha256: "746e59f91d8b06a389e74cf76e909a05ed69c12691768e2f93557fdf29200fd0" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.1.0" ffi: dependency: transitive description: name: ffi - sha256: "7bf0adc28a23d395f19f3f1eb21dd7cfd1dd9f8e1c50051c069122e6853bc878" - url: "https://pub.dev" + sha256: "493f37e7df1804778ff3a53bd691d8692ddf69702cf4c1c1096a2e41b4779e21" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.1.0" + version: "2.1.2" file: dependency: transitive description: name: file - sha256: "1b92bec4fc2a72f59a8e15af5f52cd441e4a7860b49499d69dfa817af20e925d" - url: "https://pub.dev" + sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "6.1.4" + version: "7.0.0" file_picker: dependency: "direct main" description: name: file_picker sha256: be325344c1f3070354a1d84a231a1ba75ea85d413774ec4bdf444c023342e030 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "5.5.0" file_selector_linux: @@ -334,7 +334,7 @@ packages: description: name: file_selector_linux sha256: "045d372bf19b02aeb69cacf8b4009555fb5f6f0b7ad8016e5f46dd1387ddd492" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.9.2+1" file_selector_macos: @@ -342,7 +342,7 @@ packages: description: name: file_selector_macos sha256: f42eacb83b318e183b1ae24eead1373ab1334084404c8c16e0354f9a3e55d385 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.9.4" file_selector_platform_interface: @@ -350,23 +350,23 @@ packages: description: name: file_selector_platform_interface sha256: a3994c26f10378a039faa11de174d7b78eb8f79e4dd0af2a451410c1a5c3f66b - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.6.2" file_selector_windows: dependency: transitive description: name: file_selector_windows - sha256: d3547240c20cabf205c7c7f01a50ecdbc413755814d6677f3cb366f04abcead0 - url: "https://pub.dev" + sha256: "2ad726953f6e8affbc4df8dc78b77c3b4a060967a291e528ef72ae846c60fb69" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "0.9.3+1" + version: "0.9.3+2" fixnum: dependency: transitive description: name: fixnum sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.1.0" flutter: @@ -379,7 +379,7 @@ packages: description: name: flutter_config sha256: a07e6156bb6e776e29c6357be433155acda87d1dab1a3f787a72091a1b71ffbf - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.0.2" flutter_driver: @@ -392,7 +392,7 @@ packages: description: name: flutter_html sha256: "02ad69e813ecfc0728a455e4bf892b9379983e050722b1dce00192ee2e41d1ee" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "3.0.0-beta.2" flutter_launcher_icons: @@ -400,7 +400,7 @@ packages: description: name: flutter_launcher_icons sha256: "526faf84284b86a4cb36d20a5e45147747b7563d921373d4ee0559c54fcdbcea" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.13.1" flutter_lints: @@ -408,7 +408,7 @@ packages: description: name: flutter_lints sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.0.3" flutter_localizations: @@ -420,16 +420,16 @@ packages: dependency: transitive description: name: flutter_plugin_android_lifecycle - sha256: "592dc01a18961a51c24ae5d963b724b2b7fa4a95c100fe8eb6ca8a5a4732cadf" - url: "https://pub.dev" + sha256: "9d98bd47ef9d34e803d438f17fd32b116d31009f534a6fa5ce3a1167f189a6de" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.0.18" + version: "2.0.21" flutter_screenutil: dependency: "direct main" description: name: flutter_screenutil sha256: "8239210dd68bee6b0577aa4a090890342d04a136ce1c81f98ee513fc0ce891de" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "5.9.3" flutter_svg: @@ -437,7 +437,7 @@ packages: description: name: flutter_svg sha256: d39e7f95621fc84376bc0f7d504f05c3a41488c562f4a8ad410569127507402c - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.0.9" flutter_test: @@ -455,7 +455,7 @@ packages: description: name: freezed sha256: a434911f643466d78462625df76fd9eb13e57348ff43fe1f77bbe909522c67a1 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.5.2" freezed_annotation: @@ -463,7 +463,7 @@ packages: description: name: freezed_annotation sha256: c2e2d632dd9b8a2b7751117abcfc2b4888ecfe181bd9fca7170d9ef02e595fe2 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.4.4" frontend_server_client: @@ -471,7 +471,7 @@ packages: description: name: frontend_server_client sha256: f64a0333a82f30b0cca061bc3d143813a486dc086b574bfb233b7c1372427694 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "4.0.0" fuchsia_remote_debug_protocol: @@ -484,23 +484,23 @@ packages: description: name: glob sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.1.2" graphs: dependency: transitive description: name: graphs - sha256: aedc5a15e78fc65a6e23bcd927f24c64dd995062bcd1ca6eda65a3cff92a4d19 - url: "https://pub.dev" + sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.3.1" + version: "2.3.2" html: dependency: transitive description: name: html sha256: "3a7812d5bcd2894edf53dfaf8cd640876cf6cef50a8f238745c8b8120ea74d3a" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.15.4" http: @@ -508,7 +508,7 @@ packages: description: name: http sha256: "5895291c13fa8a3bd82e76d5627f69e0d85ca6a30dcac95c4ea19a5d555879c2" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.13.6" http_multi_server: @@ -516,7 +516,7 @@ packages: description: name: http_multi_server sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "3.2.1" http_parser: @@ -524,7 +524,7 @@ packages: description: name: http_parser sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "4.0.2" image: @@ -532,7 +532,7 @@ packages: description: name: image sha256: "2237616a36c0d69aef7549ab439b833fb7f9fb9fc861af2cc9ac3eedddd69ca8" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "4.2.0" image_cropper: @@ -540,7 +540,7 @@ packages: description: name: image_cropper sha256: "710ab4b7953e9ce1d27d833f741e5f8f3afb0b0ba3556dc0b844741b5f55c2b3" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "3.0.3" image_cropper_for_web: @@ -548,7 +548,7 @@ packages: description: name: image_cropper_for_web sha256: "09e93a8ec0435adcaa23622ac090442872f18145d70b9ff605ffedcf97d56255" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.0.3" image_cropper_platform_interface: @@ -556,7 +556,7 @@ packages: description: name: image_cropper_platform_interface sha256: "62349e3aab63873ea9b9ab9f69d036ab8a0d74b3004beec4303981386cb9273f" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "3.0.3" image_picker: @@ -564,39 +564,39 @@ packages: description: name: image_picker sha256: b6951e25b795d053a6ba03af5f710069c99349de9341af95155d52665cb4607c - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.8.9" image_picker_android: dependency: transitive description: name: image_picker_android - sha256: "42c098e7fb6334746be37cdc30369ade356ed4f14d48b7a0313f95a9159f4321" - url: "https://pub.dev" + sha256: "3fe99e3a459b969f657565a853353bdea7e3d3cae34f7dd124836267d426ec87" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "0.8.9+5" + version: "0.8.12+10" image_picker_for_web: dependency: transitive description: name: image_picker_for_web sha256: "869fe8a64771b7afbc99fc433a5f7be2fea4d1cb3d7c11a48b6b579eb9c797f0" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.2.0" image_picker_ios: dependency: transitive description: name: image_picker_ios - sha256: fadafce49e8569257a0cad56d24438a6fa1f0cbd7ee0af9b631f7492818a4ca3 - url: "https://pub.dev" + sha256: "6703696ad49f5c3c8356d576d7ace84d1faf459afb07accbb0fae780753ff447" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "0.8.9+1" + version: "0.8.12" image_picker_linux: dependency: transitive description: name: image_picker_linux sha256: "4ed1d9bb36f7cd60aa6e6cd479779cc56a4cb4e4de8f49d487b1aaad831300fa" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.2.1+1" image_picker_macos: @@ -604,39 +604,39 @@ packages: description: name: image_picker_macos sha256: "3f5ad1e8112a9a6111c46d0b57a7be2286a9a07fc6e1976fdf5be2bd31d4ff62" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.2.1+1" image_picker_platform_interface: dependency: transitive description: name: image_picker_platform_interface - sha256: fa4e815e6fcada50e35718727d83ba1c92f1edf95c0b4436554cec301b56233b - url: "https://pub.dev" + sha256: "9ec26d410ff46f483c5519c29c02ef0e02e13a543f882b152d4bfd2f06802f80" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.9.3" + version: "2.10.0" image_picker_windows: dependency: transitive description: name: image_picker_windows sha256: "6ad07afc4eb1bc25f3a01084d28520496c4a3bb0cb13685435838167c9dcedeb" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.2.1+1" intl: dependency: "direct main" description: name: intl - sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d" - url: "https://pub.dev" + sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "0.18.1" + version: "0.19.0" io: dependency: transitive description: name: io sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.0.4" js: @@ -644,7 +644,7 @@ packages: description: name: js sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.6.7" json_annotation: @@ -652,7 +652,7 @@ packages: description: name: json_annotation sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "4.9.0" json_serializable: @@ -660,15 +660,39 @@ packages: description: name: json_serializable sha256: ea1432d167339ea9b5bb153f0571d0039607a873d6e04e0117af043f14a1fd4b - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "6.8.0" + leak_tracker: + dependency: transitive + description: + name: leak_tracker + sha256: "7f0df31977cb2c0b88585095d168e689669a2cc9b97c309665e3386f3e9d341a" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" + source: hosted + version: "10.0.4" + leak_tracker_flutter_testing: + dependency: transitive + description: + name: leak_tracker_flutter_testing + sha256: "06e98f569d004c1315b991ded39924b21af84cf14cc94791b8aea337d25b57f8" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" + source: hosted + version: "3.0.3" + leak_tracker_testing: + dependency: transitive + description: + name: leak_tracker_testing + sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" + source: hosted + version: "3.0.1" lints: dependency: transitive description: name: lints sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.1.1" list_counter: @@ -676,7 +700,7 @@ packages: description: name: list_counter sha256: c447ae3dfcd1c55f0152867090e67e219d42fe6d4f2807db4bbe8b8d69912237 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.0.2" logging: @@ -684,47 +708,47 @@ packages: description: name: logging sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.2.0" matcher: dependency: transitive description: name: matcher - sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e" - url: "https://pub.dev" + sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "0.12.16" + version: "0.12.16+1" material_color_utilities: dependency: transitive description: name: material_color_utilities - sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41" - url: "https://pub.dev" + sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "0.5.0" + version: "0.8.0" meta: dependency: transitive description: name: meta - sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3" - url: "https://pub.dev" + sha256: "7687075e408b093f36e6bbf6c91878cc0d4cd10f409506f7bc996f68220b9136" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "1.9.1" + version: "1.12.0" mime: dependency: transitive description: name: mime - sha256: e4ff8e8564c03f255408decd16e7899da1733852a9110a58fe6d1b817684a63e - url: "https://pub.dev" + sha256: "2e123074287cc9fd6c09de8336dae606d1ddb88d9ac47358826db698c176a1f2" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "1.0.4" + version: "1.0.5" mockito: dependency: "direct main" description: name: mockito sha256: "6841eed20a7befac0ce07df8116c8b8233ed1f4486a7647c7fc5a02ae6163917" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "5.4.4" native_image_cropper: @@ -732,7 +756,7 @@ packages: description: name: native_image_cropper sha256: "50b7b53d2757ee0b898d3d46a9a1ffa6cf5406641a9d3904be386e1ec6fda75f" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.4.0" native_image_cropper_android: @@ -740,7 +764,7 @@ packages: description: name: native_image_cropper_android sha256: "27ef9de059d195398795f862c2dd594c1a77a13168f7a97b9cbf70fe2e7e4677" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.2.0" native_image_cropper_ios: @@ -748,7 +772,7 @@ packages: description: name: native_image_cropper_ios sha256: "4c40ffc8ea1e52078384bba6adfae8a90bef064ebbb25a0d52211b828b3895aa" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.2.0" native_image_cropper_macos: @@ -756,7 +780,7 @@ packages: description: name: native_image_cropper_macos sha256: f3815264a7755047f0b38413c69f5b76ed4ffdd7af28edeacfc134b08b1d5a74 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.2.0" native_image_cropper_platform_interface: @@ -764,7 +788,7 @@ packages: description: name: native_image_cropper_platform_interface sha256: "3ac1484f83abd62be7ff1d74c475137c59008aa01e671d8678d5e25c46c98d59" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.2.0" native_image_cropper_web: @@ -772,7 +796,7 @@ packages: description: name: native_image_cropper_web sha256: "4767ca067ff2b5d1d3dd02c14eb00124da5d203ff917c9528b35f294bcf9227e" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.2.0" nested: @@ -780,7 +804,7 @@ packages: description: name: nested sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.0.0" nm: @@ -788,7 +812,7 @@ packages: description: name: nm sha256: "2c9aae4127bdc8993206464fcc063611e0e36e72018696cd9631023a31b24254" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.5.0" package_config: @@ -796,23 +820,23 @@ packages: description: name: package_config sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.1.0" path: dependency: transitive description: name: path - sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" - url: "https://pub.dev" + sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "1.8.3" + version: "1.9.0" path_drawing: dependency: transitive description: name: path_drawing sha256: bbb1934c0cbb03091af082a6389ca2080345291ef07a5fa6d6e078ba8682f977 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.0.1" path_parsing: @@ -820,39 +844,39 @@ packages: description: name: path_parsing sha256: e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.0.1" path_provider: dependency: "direct main" description: name: path_provider - sha256: c9e7d3a4cd1410877472158bee69963a4579f78b68c65a2b7d40d1a7a88bb161 - url: "https://pub.dev" + sha256: fec0d61223fba3154d87759e3cc27fe2c8dc498f6386c6d6fc80d1afdd1bf378 + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.1.3" + version: "2.1.4" path_provider_android: dependency: transitive description: name: path_provider_android - sha256: "51f0d2c554cfbc9d6a312ab35152fc77e2f0b758ce9f1a444a3a1e5b8f3c6b7f" - url: "https://pub.dev" + sha256: "490539678396d4c3c0b06efdaab75ae60675c3e0c66f72bc04c2e2c1e0e2abeb" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.2.3" + version: "2.2.9" path_provider_foundation: dependency: transitive description: name: path_provider_foundation - sha256: "5a7999be66e000916500be4f15a3633ebceb8302719b47b9cc49ce924125350f" - url: "https://pub.dev" + sha256: f234384a3fdd67f989b4d54a5d73ca2a6c422fa55ae694381ae0f4375cd1ea16 + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.3.2" + version: "2.4.0" path_provider_linux: dependency: transitive description: name: path_provider_linux sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.2.1" path_provider_platform_interface: @@ -860,39 +884,39 @@ packages: description: name: path_provider_platform_interface sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.1.2" path_provider_windows: dependency: transitive description: name: path_provider_windows - sha256: "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170" - url: "https://pub.dev" + sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7 + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.2.1" + version: "2.3.0" pdf: dependency: transitive description: name: pdf sha256: "81d5522bddc1ef5c28e8f0ee40b71708761753c163e0c93a40df56fd515ea0f0" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "3.11.0" pdf_widget_wrapper: dependency: transitive description: name: pdf_widget_wrapper - sha256: e9d31fd7782ce28ae346b127ea7d1cd748d799bddee379f31191693610e23749 - url: "https://pub.dev" + sha256: c930860d987213a3d58c7ec3b7ecf8085c3897f773e8dc23da9cae60a5d6d0f5 + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "1.0.1" + version: "1.0.4" percent_indicator: dependency: "direct main" description: name: percent_indicator sha256: c37099ad833a883c9d71782321cb65c3a848c21b6939b6185f0ff6640d05814c - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "4.2.3" permission_handler: @@ -900,7 +924,7 @@ packages: description: name: permission_handler sha256: bc56bfe9d3f44c3c612d8d393bd9b174eb796d706759f9b495ac254e4294baa5 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "10.4.5" permission_handler_android: @@ -908,7 +932,7 @@ packages: description: name: permission_handler_android sha256: "59c6322171c29df93a22d150ad95f3aa19ed86542eaec409ab2691b8f35f9a47" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "10.3.6" permission_handler_apple: @@ -916,7 +940,7 @@ packages: description: name: permission_handler_apple sha256: "99e220bce3f8877c78e4ace901082fb29fa1b4ebde529ad0932d8d664b34f3f5" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "9.1.4" permission_handler_platform_interface: @@ -924,7 +948,7 @@ packages: description: name: permission_handler_platform_interface sha256: "6760eb5ef34589224771010805bea6054ad28453906936f843a8cc4d3a55c4a4" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "3.12.0" permission_handler_windows: @@ -932,39 +956,39 @@ packages: description: name: permission_handler_windows sha256: cc074aace208760f1eee6aa4fae766b45d947df85bc831cde77009cdb4720098 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.1.3" petitparser: dependency: transitive description: name: petitparser - sha256: cb3798bef7fc021ac45b308f4b51208a152792445cce0448c9a4ba5879dd8750 - url: "https://pub.dev" + sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27 + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "5.4.0" + version: "6.0.2" pigeon: dependency: "direct main" description: name: pigeon sha256: d1ab184e028cfecd957d4de34f705b4f84b98661e6a4be1d9cac9dade278b937 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "10.1.6" platform: dependency: transitive description: name: platform - sha256: "4a451831508d7d6ca779f7ac6e212b4023dd5a7d08a27a63da33756410e32b76" - url: "https://pub.dev" + sha256: "12220bb4b65720483f8fa9450b4332347737cf8213dd2840d8b2c823e47243ec" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "3.1.0" + version: "3.1.4" plugin_platform_interface: dependency: transitive description: name: plugin_platform_interface sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.1.8" pool: @@ -972,31 +996,31 @@ packages: description: name: pool sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.5.1" printing: dependency: "direct main" description: name: printing - sha256: "1c99cab90ebcc1fff65831d264627d5b529359d563e53f33ab9b8117f2d280bc" - url: "https://pub.dev" + sha256: cc4b256a5a89d5345488e3318897b595867f5181b8c5ed6fc63bfa5f2044aec3 + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "5.12.0" + version: "5.13.1" process: dependency: transitive description: name: process - sha256: "53fd8db9cec1d37b0574e12f07520d582019cb6c44abf5479a01505099a34a09" - url: "https://pub.dev" + sha256: "21e54fd2faf1b5bdd5102afd25012184a6793927648ea81eea80552ac9405b32" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "4.2.4" + version: "5.0.2" provider: dependency: "direct main" description: name: provider sha256: c8a055ee5ce3fd98d6fc872478b03823ffdb448699c6ebdbbc71d59b596fd48c - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "6.1.2" pub_semver: @@ -1004,7 +1028,7 @@ packages: description: name: pub_semver sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.1.4" pubspec_parse: @@ -1012,23 +1036,23 @@ packages: description: name: pubspec_parse sha256: c799b721d79eb6ee6fa56f00c04b472dcd44a30d258fac2174a6ec57302678f8 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.3.0" qr: dependency: transitive description: name: qr - sha256: "64957a3930367bf97cc211a5af99551d630f2f4625e38af10edd6b19131b64b3" - url: "https://pub.dev" + sha256: "5a1d2586170e172b8a8c8470bbbffd5eb0cd38a66c0d77155ea138d3af3a4445" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "3.0.1" + version: "3.0.2" qr_code_scanner: dependency: "direct main" description: name: qr_code_scanner sha256: f23b68d893505a424f0bd2e324ebea71ed88465d572d26bb8d2e78a4749591fd - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.0.1" quiver: @@ -1036,7 +1060,7 @@ packages: description: name: quiver sha256: b1c1ac5ce6688d77f65f3375a9abb9319b3cb32486bdc7a1e0fdf004d7ba4e47 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "3.2.1" responsive_grid_list: @@ -1044,81 +1068,81 @@ packages: description: name: responsive_grid_list sha256: e6cd1754240795cb8b08a4520c9eb5d28856ecf71de5fe6e64535a68c0913563 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.4.0" shared_preferences: dependency: "direct main" description: name: shared_preferences - sha256: d3bbe5553a986e83980916ded2f0b435ef2e1893dfaa29d5a7a790d0eca12180 - url: "https://pub.dev" + sha256: c272f9cabca5a81adc9b0894381e9c1def363e980f960fa903c604c471b22f68 + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.2.3" + version: "2.3.1" shared_preferences_android: dependency: transitive description: name: shared_preferences_android - sha256: "8568a389334b6e83415b6aae55378e158fbc2314e074983362d20c562780fb06" - url: "https://pub.dev" + sha256: "041be4d9d2dc6079cf342bc8b761b03787e3b71192d658220a56cac9c04a0294" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.2.1" + version: "2.3.0" shared_preferences_foundation: dependency: transitive description: name: shared_preferences_foundation - sha256: "7708d83064f38060c7b39db12aefe449cb8cdc031d6062280087bc4cdb988f5c" - url: "https://pub.dev" + sha256: "671e7a931f55a08aa45be2a13fe7247f2a41237897df434b30d2012388191833" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.3.5" + version: "2.5.0" shared_preferences_linux: dependency: transitive description: name: shared_preferences_linux - sha256: "9f2cbcf46d4270ea8be39fa156d86379077c8a5228d9dfdb1164ae0bb93f1faa" - url: "https://pub.dev" + sha256: "2ba0510d3017f91655b7543e9ee46d48619de2a2af38e5c790423f7007c7ccc1" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.3.2" + version: "2.4.0" shared_preferences_platform_interface: dependency: transitive description: name: shared_preferences_platform_interface - sha256: "22e2ecac9419b4246d7c22bfbbda589e3acf5c0351137d87dd2939d984d37c3b" - url: "https://pub.dev" + sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.3.2" + version: "2.4.1" shared_preferences_web: dependency: transitive description: name: shared_preferences_web - sha256: d762709c2bbe80626ecc819143013cc820fa49ca5e363620ee20a8b15a3e3daf - url: "https://pub.dev" + sha256: "59dc807b94d29d52ddbb1b3c0d3b9d0a67fc535a64e62a5542c8db0513fcb6c2" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.2.1" + version: "2.4.1" shared_preferences_windows: dependency: transitive description: name: shared_preferences_windows - sha256: "841ad54f3c8381c480d0c9b508b89a34036f512482c407e6df7a9c4aa2ef8f59" - url: "https://pub.dev" + sha256: "398084b47b7f92110683cac45c6dc4aae853db47e470e5ddcd52cab7f7196ab2" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.3.2" + version: "2.4.0" shelf: dependency: transitive description: name: shelf sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.4.1" shelf_web_socket: dependency: transitive description: name: shelf_web_socket - sha256: "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1" - url: "https://pub.dev" + sha256: "073c147238594ecd0d193f3456a5fe91c4b0abbcc68bf5cd95b36c4e194ac611" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "1.0.4" + version: "2.0.0" sky_engine: dependency: transitive description: flutter @@ -1129,7 +1153,7 @@ packages: description: name: source_gen sha256: "14658ba5f669685cd3d63701d01b31ea748310f7ab854e471962670abcf57832" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.5.0" source_helper: @@ -1137,7 +1161,7 @@ packages: description: name: source_helper sha256: "6adebc0006c37dd63fe05bca0a929b99f06402fc95aa35bf36d67f5c06de01fd" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.3.4" source_span: @@ -1145,31 +1169,31 @@ packages: description: name: source_span sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.10.0" stack_trace: dependency: transitive description: name: stack_trace - sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5 - url: "https://pub.dev" + sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "1.11.0" + version: "1.11.1" stream_channel: dependency: transitive description: name: stream_channel - sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8" - url: "https://pub.dev" + sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.1.1" + version: "2.1.2" stream_transform: dependency: transitive description: name: stream_transform sha256: "14a00e794c7c11aa145a170587321aedce29769c08d7f58b1d141da75e3b1c6f" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.1.0" string_scanner: @@ -1177,7 +1201,7 @@ packages: description: name: string_scanner sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.2.0" sync_http: @@ -1185,7 +1209,7 @@ packages: description: name: sync_http sha256: "7f0cd72eca000d2e026bcd6f990b81d0ca06022ef4e32fb257b30d3d1014a961" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.3.1" term_glyph: @@ -1193,23 +1217,23 @@ packages: description: name: term_glyph sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.2.1" test_api: dependency: transitive description: name: test_api - sha256: "75760ffd7786fffdfb9597c35c5b27eaeec82be8edfb6d71d32651128ed7aab8" - url: "https://pub.dev" + sha256: "9955ae474176f7ac8ee4e989dadfb411a58c30415bcfb648fa04b2b8a03afa7f" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "0.6.0" + version: "0.7.0" timing: dependency: transitive description: name: timing sha256: "70a3b636575d4163c477e6de42f247a23b315ae20e86442bebe32d3cabf61c32" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.0.1" typed_data: @@ -1217,39 +1241,39 @@ packages: description: name: typed_data sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.3.2" url_launcher: dependency: "direct main" description: name: url_launcher - sha256: c512655380d241a337521703af62d2c122bf7b77a46ff7dd750092aa9433499c - url: "https://pub.dev" + sha256: "21b704ce5fa560ea9f3b525b43601c678728ba46725bab9b01187b4831377ed3" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "6.2.4" + version: "6.3.0" url_launcher_android: dependency: transitive description: name: url_launcher_android - sha256: d4ed0711849dd8e33eb2dd69c25db0d0d3fdc37e0a62e629fe32f57a22db2745 - url: "https://pub.dev" + sha256: "94d8ad05f44c6d4e2ffe5567ab4d741b82d62e3c8e288cc1fcea45965edf47c9" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "6.3.0" + version: "6.3.8" url_launcher_ios: dependency: transitive description: name: url_launcher_ios - sha256: "75bb6fe3f60070407704282a2d295630cab232991eb52542b18347a8a941df03" - url: "https://pub.dev" + sha256: e43b677296fadce447e987a2f519dcf5f6d1e527dc35d01ffab4fff5b8a7063e + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "6.2.4" + version: "6.3.1" url_launcher_linux: dependency: transitive description: name: url_launcher_linux sha256: ab360eb661f8879369acac07b6bb3ff09d9471155357da8443fd5d3cf7363811 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "3.1.1" url_launcher_macos: @@ -1257,7 +1281,7 @@ packages: description: name: url_launcher_macos sha256: "9a1a42d5d2d95400c795b2914c36fdcb525870c752569438e4ebb09a2b5d90de" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "3.2.0" url_launcher_platform_interface: @@ -1265,31 +1289,31 @@ packages: description: name: url_launcher_platform_interface sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.3.2" url_launcher_web: dependency: transitive description: name: url_launcher_web - sha256: "7fd2f55fe86cea2897b963e864dc01a7eb0719ecc65fcef4c1cc3d686d718bb2" - url: "https://pub.dev" + sha256: a36e2d7981122fa185006b216eb6b5b97ede3f9a54b7a511bc966971ab98d049 + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.2.0" + version: "2.3.2" url_launcher_windows: dependency: transitive description: name: url_launcher_windows - sha256: ecf9725510600aa2bb6d7ddabe16357691b6d2805f66216a97d1b881e21beff7 - url: "https://pub.dev" + sha256: "49c10f879746271804767cb45551ec5592cdab00ee105c06dddde1a98f73b185" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "3.1.1" + version: "3.1.2" vector_graphics: dependency: transitive description: name: vector_graphics sha256: "4ac59808bbfca6da38c99f415ff2d3a5d7ca0a6b4809c71d9cf30fba5daf9752" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.1.10+1" vector_graphics_codec: @@ -1297,7 +1321,7 @@ packages: description: name: vector_graphics_codec sha256: f3247e7ab0ec77dc759263e68394990edc608fb2b480b80db8aa86ed09279e33 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.1.10+1" vector_graphics_compiler: @@ -1305,7 +1329,7 @@ packages: description: name: vector_graphics_compiler sha256: "18489bdd8850de3dd7ca8a34e0c446f719ec63e2bab2e7a8cc66a9028dd76c5a" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.1.10+1" vector_math: @@ -1313,55 +1337,63 @@ packages: description: name: vector_math sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.1.4" vm_service: dependency: transitive description: name: vm_service - sha256: c620a6f783fa22436da68e42db7ebbf18b8c44b9a46ab911f666ff09ffd9153f - url: "https://pub.dev" + sha256: "3923c89304b715fb1eb6423f017651664a03bf5f4b29983627c4da791f74a4ec" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "11.7.1" + version: "14.2.1" watcher: dependency: transitive description: name: watcher sha256: "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.1.0" web: dependency: transitive description: name: web - sha256: dc8ccd225a2005c1be616fe02951e2e342092edf968cf0844220383757ef8f10 - url: "https://pub.dev" + sha256: "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" + source: hosted + version: "0.5.1" + web_socket: + dependency: transitive + description: + name: web_socket + sha256: "3c12d96c0c9a4eec095246debcea7b86c0324f22df69893d538fcc6f1b8cce83" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "0.1.4-beta" + version: "0.1.6" web_socket_channel: dependency: transitive description: name: web_socket_channel - sha256: d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b - url: "https://pub.dev" + sha256: "9f187088ed104edd8662ca07af4b124465893caf063ba29758f97af57e61da8f" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "2.4.0" + version: "3.0.1" webdriver: dependency: transitive description: name: webdriver - sha256: "3c923e918918feeb90c4c9fdf1fe39220fa4c0e8e2c0fffaded174498ef86c49" - url: "https://pub.dev" + sha256: "003d7da9519e1e5f329422b36c4dcdf18d7d2978d1ba099ea4e45ba490ed845e" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "3.0.2" + version: "3.0.3" webview_flutter: dependency: transitive description: name: webview_flutter sha256: "392c1d83b70fe2495de3ea2c84531268d5b8de2de3f01086a53334d8b6030a88" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "3.0.4" webview_flutter_android: @@ -1369,7 +1401,7 @@ packages: description: name: webview_flutter_android sha256: "8b3b2450e98876c70bfcead876d9390573b34b9418c19e28168b74f6cb252dbd" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.10.4" webview_flutter_platform_interface: @@ -1377,7 +1409,7 @@ packages: description: name: webview_flutter_platform_interface sha256: "812165e4e34ca677bdfbfa58c01e33b27fd03ab5fa75b70832d4b7d4ca1fa8cf" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.9.5" webview_flutter_plus: @@ -1385,7 +1417,7 @@ packages: description: name: webview_flutter_plus sha256: bea8756ae096529254725def7c4a633851a785c7d49206e0817125ab02b14307 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "0.3.0+2" webview_flutter_wkwebview: @@ -1393,41 +1425,41 @@ packages: description: name: webview_flutter_wkwebview sha256: a5364369c758892aa487cbf59ea41d9edd10f9d9baf06a94e80f1bd1b4c7bbc0 - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "2.9.5" win32: dependency: transitive description: name: win32 - sha256: b0f37db61ba2f2e9b7a78a1caece0052564d1bc70668156cf3a29d676fe4e574 - url: "https://pub.dev" + sha256: "015002c060f1ae9f41a818f2d5640389cc05283e368be19dc8d77cecb43c40c9" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "5.1.1" + version: "5.5.3" xdg_directories: dependency: transitive description: name: xdg_directories sha256: faea9dee56b520b55a566385b84f2e8de55e7496104adada9962e0bd11bcff1d - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "1.0.4" xml: dependency: transitive description: name: xml - sha256: "5bc72e1e45e941d825fd7468b9b4cc3b9327942649aeb6fc5cdbf135f0a86e84" - url: "https://pub.dev" + sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226 + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted - version: "6.3.0" + version: "6.5.0" yaml: dependency: transitive description: name: yaml sha256: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5" - url: "https://pub.dev" + url: "https://infyartifactory.jfrog.io/artifactory/api/pub/pub.dev-remote/" source: hosted version: "3.1.2" sdks: - dart: ">=3.1.0 <4.0.0" - flutter: ">=3.13.0" + dart: ">=3.4.0 <4.0.0" + flutter: ">=3.22.0"