Future<bool> validateForm({ required String formName, }) async { startLoading(); final result = await _formGroups[formName]?.validate() ?? true; stopLoading(); return result; }