uitgaansevenement_aanmaken_model.dart 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568
  1. import '/backend/api_requests/api_calls.dart';
  2. import '/components/fotoboek_grid_component_widget.dart';
  3. import '/components/header_buttons_component_widget.dart';
  4. import '/flutter_flow/flutter_flow_drop_down.dart';
  5. import '/flutter_flow/flutter_flow_theme.dart';
  6. import '/flutter_flow/flutter_flow_util.dart';
  7. import '/flutter_flow/flutter_flow_widgets.dart';
  8. import '/flutter_flow/form_field_controller.dart';
  9. import '/flutter_flow/upload_data.dart';
  10. import '/shared/drawer_component/drawer_component_widget.dart';
  11. import 'dart:ui';
  12. import '/custom_code/actions/index.dart' as actions;
  13. import '/flutter_flow/custom_functions.dart' as functions;
  14. import 'uitgaansevenement_aanmaken_widget.dart'
  15. show UitgaansevenementAanmakenWidget;
  16. import 'package:flutter/foundation.dart';
  17. import 'package:flutter/material.dart';
  18. import 'package:flutter/scheduler.dart';
  19. import 'package:flutter_spinkit/flutter_spinkit.dart';
  20. import 'package:google_fonts/google_fonts.dart';
  21. import 'package:provider/provider.dart';
  22. class UitgaansevenementAanmakenModel
  23. extends FlutterFlowModel<UitgaansevenementAanmakenWidget> {
  24. /// Local state fields for this page.
  25. String? _createHorecagelegenheidNid;
  26. set createHorecagelegenheidNid(String? value) {
  27. _createHorecagelegenheidNid = value;
  28. debugLogWidgetClass(this);
  29. }
  30. String? get createHorecagelegenheidNid => _createHorecagelegenheidNid;
  31. late LoggableList<String> _createCategorieTids = LoggableList([]);
  32. set createCategorieTids(List<String> value) {
  33. if (value != null) {
  34. _createCategorieTids = LoggableList(value);
  35. }
  36. debugLogWidgetClass(this);
  37. }
  38. List<String> get createCategorieTids =>
  39. _createCategorieTids?..logger = () => debugLogWidgetClass(this);
  40. void addToCreateCategorieTids(String item) => createCategorieTids.add(item);
  41. void removeFromCreateCategorieTids(String item) =>
  42. createCategorieTids.remove(item);
  43. void removeAtIndexFromCreateCategorieTids(int index) =>
  44. createCategorieTids.removeAt(index);
  45. void insertAtIndexInCreateCategorieTids(int index, String item) =>
  46. createCategorieTids.insert(index, item);
  47. void updateCreateCategorieTidsAtIndex(int index, Function(String) updateFn) =>
  48. createCategorieTids[index] = updateFn(createCategorieTids[index]);
  49. String? _createEntreeTid;
  50. set createEntreeTid(String? value) {
  51. _createEntreeTid = value;
  52. debugLogWidgetClass(this);
  53. }
  54. String? get createEntreeTid => _createEntreeTid;
  55. String? _createLogoFid;
  56. set createLogoFid(String? value) {
  57. _createLogoFid = value;
  58. debugLogWidgetClass(this);
  59. }
  60. String? get createLogoFid => _createLogoFid;
  61. late LoggableList<String> _createFotosFids = LoggableList([]);
  62. set createFotosFids(List<String> value) {
  63. if (value != null) {
  64. _createFotosFids = LoggableList(value);
  65. }
  66. debugLogWidgetClass(this);
  67. }
  68. List<String> get createFotosFids =>
  69. _createFotosFids?..logger = () => debugLogWidgetClass(this);
  70. void addToCreateFotosFids(String item) => createFotosFids.add(item);
  71. void removeFromCreateFotosFids(String item) => createFotosFids.remove(item);
  72. void removeAtIndexFromCreateFotosFids(int index) =>
  73. createFotosFids.removeAt(index);
  74. void insertAtIndexInCreateFotosFids(int index, String item) =>
  75. createFotosFids.insert(index, item);
  76. void updateCreateFotosFidsAtIndex(int index, Function(String) updateFn) =>
  77. createFotosFids[index] = updateFn(createFotosFids[index]);
  78. String? _createLogoUrl;
  79. set createLogoUrl(String? value) {
  80. _createLogoUrl = value;
  81. debugLogWidgetClass(this);
  82. }
  83. String? get createLogoUrl => _createLogoUrl;
  84. late LoggableList<String> _createFotosUrls = LoggableList([]);
  85. set createFotosUrls(List<String> value) {
  86. if (value != null) {
  87. _createFotosUrls = LoggableList(value);
  88. }
  89. debugLogWidgetClass(this);
  90. }
  91. List<String> get createFotosUrls =>
  92. _createFotosUrls?..logger = () => debugLogWidgetClass(this);
  93. void addToCreateFotosUrls(String item) => createFotosUrls.add(item);
  94. void removeFromCreateFotosUrls(String item) => createFotosUrls.remove(item);
  95. void removeAtIndexFromCreateFotosUrls(int index) =>
  96. createFotosUrls.removeAt(index);
  97. void insertAtIndexInCreateFotosUrls(int index, String item) =>
  98. createFotosUrls.insert(index, item);
  99. void updateCreateFotosUrlsAtIndex(int index, Function(String) updateFn) =>
  100. createFotosUrls[index] = updateFn(createFotosUrls[index]);
  101. bool _fotoboekOpen = false;
  102. set fotoboekOpen(bool value) {
  103. _fotoboekOpen = value;
  104. debugLogWidgetClass(this);
  105. }
  106. bool get fotoboekOpen => _fotoboekOpen;
  107. String _fotoboekDoel = '';
  108. set fotoboekDoel(String value) {
  109. _fotoboekDoel = value;
  110. debugLogWidgetClass(this);
  111. }
  112. String get fotoboekDoel => _fotoboekDoel;
  113. /// State fields for stateful widgets in this page.
  114. // Stores action output result for [Backend Call - API (MijnHorecagelegenheden)] action in uitgaansevenementAanmaken widget.
  115. ApiCallResponse? _mijnHorecaResp;
  116. set mijnHorecaResp(ApiCallResponse? value) {
  117. _mijnHorecaResp = value;
  118. debugLogWidgetClass(this);
  119. }
  120. ApiCallResponse? get mijnHorecaResp => _mijnHorecaResp;
  121. // State field(s) for TextFieldTitel widget.
  122. FocusNode? textFieldTitelFocusNode;
  123. TextEditingController? textFieldTitelTextController;
  124. String? Function(BuildContext, String?)?
  125. textFieldTitelTextControllerValidator;
  126. // State field(s) for TextFieldOmschrijving widget.
  127. FocusNode? textFieldOmschrijvingFocusNode;
  128. TextEditingController? textFieldOmschrijvingTextController;
  129. String? Function(BuildContext, String?)?
  130. textFieldOmschrijvingTextControllerValidator;
  131. // State field(s) for DropDownHorecagelegenheid widget.
  132. String? _dropDownHorecagelegenheidValue;
  133. set dropDownHorecagelegenheidValue(String? value) {
  134. _dropDownHorecagelegenheidValue = value;
  135. debugLogWidgetClass(this);
  136. }
  137. String? get dropDownHorecagelegenheidValue => _dropDownHorecagelegenheidValue;
  138. FormFieldController<String>? dropDownHorecagelegenheidValueController;
  139. // State field(s) for DropDownCategorieen widget.
  140. LoggableList<String>? _dropDownCategorieenValue;
  141. set dropDownCategorieenValue(List<String>? value) {
  142. if (value != null) {
  143. _dropDownCategorieenValue = LoggableList(value);
  144. } else {
  145. _dropDownCategorieenValue = null;
  146. }
  147. debugLogWidgetClass(this);
  148. }
  149. List<String>? get dropDownCategorieenValue =>
  150. _dropDownCategorieenValue?..logger = () => debugLogWidgetClass(this);
  151. FormFieldController<List<String>>? dropDownCategorieenValueController;
  152. DateTime? datePicked1;
  153. // State field(s) for TextFieldDatumStart widget.
  154. FocusNode? textFieldDatumStartFocusNode;
  155. TextEditingController? textFieldDatumStartTextController;
  156. String? Function(BuildContext, String?)?
  157. textFieldDatumStartTextControllerValidator;
  158. DateTime? datePicked2;
  159. // State field(s) for TextFieldDatumEind widget.
  160. FocusNode? textFieldDatumEindFocusNode;
  161. TextEditingController? textFieldDatumEindTextController;
  162. String? Function(BuildContext, String?)?
  163. textFieldDatumEindTextControllerValidator;
  164. // State field(s) for TextFieldWebsiteURL widget.
  165. FocusNode? textFieldWebsiteURLFocusNode;
  166. TextEditingController? textFieldWebsiteURLTextController;
  167. String? Function(BuildContext, String?)?
  168. textFieldWebsiteURLTextControllerValidator;
  169. // State field(s) for TextFieldTicketsURL widget.
  170. FocusNode? textFieldTicketsURLFocusNode;
  171. TextEditingController? textFieldTicketsURLTextController;
  172. String? Function(BuildContext, String?)?
  173. textFieldTicketsURLTextControllerValidator;
  174. // State field(s) for DropDownEntree widget.
  175. String? _dropDownEntreeValue;
  176. set dropDownEntreeValue(String? value) {
  177. _dropDownEntreeValue = value;
  178. debugLogWidgetClass(this);
  179. }
  180. String? get dropDownEntreeValue => _dropDownEntreeValue;
  181. FormFieldController<String>? dropDownEntreeValueController;
  182. // State field(s) for TextFieldToelichtingEntree widget.
  183. FocusNode? textFieldToelichtingEntreeFocusNode;
  184. TextEditingController? textFieldToelichtingEntreeTextController;
  185. String? Function(BuildContext, String?)?
  186. textFieldToelichtingEntreeTextControllerValidator;
  187. // State field(s) for TextFieldEntreeprijs widget.
  188. FocusNode? textFieldEntreeprijsFocusNode;
  189. TextEditingController? textFieldEntreeprijsTextController;
  190. String? Function(BuildContext, String?)?
  191. textFieldEntreeprijsTextControllerValidator;
  192. bool isDataUploading_uploadDataLogoEvenement = false;
  193. FFUploadedFile uploadedLocalFile_uploadDataLogoEvenement =
  194. FFUploadedFile(bytes: Uint8List.fromList([]), originalFilename: '');
  195. // Stores action output result for [Custom Action - bestandUpload] action in ButtonLogo widget.
  196. dynamic? _logoevenementuploadResult;
  197. set logoevenementuploadResult(dynamic? value) {
  198. _logoevenementuploadResult = value;
  199. debugLogWidgetClass(this);
  200. }
  201. dynamic? get logoevenementuploadResult => _logoevenementuploadResult;
  202. bool isDataUploading_uploadDataFotosEvent = false;
  203. FFUploadedFile uploadedLocalFile_uploadDataFotosEvent =
  204. FFUploadedFile(bytes: Uint8List.fromList([]), originalFilename: '');
  205. // Stores action output result for [Custom Action - bestandUpload] action in ButtonFotos widget.
  206. dynamic? _fotoEvenementuploadResult;
  207. set fotoEvenementuploadResult(dynamic? value) {
  208. _fotoEvenementuploadResult = value;
  209. debugLogWidgetClass(this);
  210. }
  211. dynamic? get fotoEvenementuploadResult => _fotoEvenementuploadResult;
  212. // Model for FotoboekGridComponent component.
  213. late FotoboekGridComponentModel fotoboekGridComponentModel;
  214. // Stores action output result for [Custom Action - evenementCreate] action in ButtonIndienen widget.
  215. dynamic? _createResult;
  216. set createResult(dynamic? value) {
  217. _createResult = value;
  218. debugLogWidgetClass(this);
  219. }
  220. dynamic? get createResult => _createResult;
  221. // Model for HeaderButtonsComponent component.
  222. late HeaderButtonsComponentModel headerButtonsComponentModel;
  223. // Model for drawerComponent component.
  224. late DrawerComponentModel drawerComponentModel;
  225. final Map<String, DebugDataField> debugGeneratorVariables = {};
  226. final Map<String, DebugDataField> debugBackendQueries = {};
  227. final Map<String, FlutterFlowModel> widgetBuilderComponents = {};
  228. @override
  229. void initState(BuildContext context) {
  230. fotoboekGridComponentModel =
  231. createModel(context, () => FotoboekGridComponentModel());
  232. headerButtonsComponentModel =
  233. createModel(context, () => HeaderButtonsComponentModel());
  234. drawerComponentModel = createModel(context, () => DrawerComponentModel());
  235. debugLogWidgetClass(this);
  236. }
  237. @override
  238. void dispose() {
  239. textFieldTitelFocusNode?.dispose();
  240. textFieldTitelTextController?.dispose();
  241. textFieldOmschrijvingFocusNode?.dispose();
  242. textFieldOmschrijvingTextController?.dispose();
  243. textFieldDatumStartFocusNode?.dispose();
  244. textFieldDatumStartTextController?.dispose();
  245. textFieldDatumEindFocusNode?.dispose();
  246. textFieldDatumEindTextController?.dispose();
  247. textFieldWebsiteURLFocusNode?.dispose();
  248. textFieldWebsiteURLTextController?.dispose();
  249. textFieldTicketsURLFocusNode?.dispose();
  250. textFieldTicketsURLTextController?.dispose();
  251. textFieldToelichtingEntreeFocusNode?.dispose();
  252. textFieldToelichtingEntreeTextController?.dispose();
  253. textFieldEntreeprijsFocusNode?.dispose();
  254. textFieldEntreeprijsTextController?.dispose();
  255. fotoboekGridComponentModel.dispose();
  256. headerButtonsComponentModel.dispose();
  257. drawerComponentModel.dispose();
  258. }
  259. @override
  260. WidgetClassDebugData toWidgetClassDebugData() => WidgetClassDebugData(
  261. widgetParameters: {
  262. 'horecagelegenheidNid': debugSerializeParam(
  263. widget?.horecagelegenheidNid,
  264. ParamType.String,
  265. link:
  266. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  267. searchReference:
  268. 'reference=SiYKHgoUaG9yZWNhZ2VsZWdlbmhlaWROaWQSBnpwZWk2MHIECAMgAFABWhRob3JlY2FnZWxlZ2VuaGVpZE5pZA==',
  269. name: 'String',
  270. nullable: true,
  271. )
  272. }.withoutNulls.entries,
  273. localStates: {
  274. 'createHorecagelegenheidNid': debugSerializeParam(
  275. createHorecagelegenheidNid,
  276. ParamType.String,
  277. link:
  278. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  279. searchReference:
  280. 'reference=Qi8KIwoaY3JlYXRlSG9yZWNhZ2VsZWdlbmhlaWROaWQSBWd6bW1uKgISAHIECAMgAFABWhpjcmVhdGVIb3JlY2FnZWxlZ2VuaGVpZE5pZGIZdWl0Z2FhbnNldmVuZW1lbnRBYW5tYWtlbg==',
  281. name: 'String',
  282. nullable: true,
  283. ),
  284. 'createCategorieTids': debugSerializeParam(
  285. createCategorieTids,
  286. ParamType.String,
  287. isList: true,
  288. link:
  289. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  290. searchReference:
  291. 'reference=QiYKHAoTY3JlYXRlQ2F0ZWdvcmllVGlkcxIFcjQzeGRyBhICCAMgAVABWhNjcmVhdGVDYXRlZ29yaWVUaWRzYhl1aXRnYWFuc2V2ZW5lbWVudEFhbm1ha2Vu',
  292. name: 'String',
  293. nullable: false,
  294. ),
  295. 'createEntreeTid': debugSerializeParam(
  296. createEntreeTid,
  297. ParamType.String,
  298. link:
  299. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  300. searchReference:
  301. 'reference=QiQKGAoPY3JlYXRlRW50cmVlVGlkEgU2cm90YSoCEgByBAgDIABQAVoPY3JlYXRlRW50cmVlVGlkYhl1aXRnYWFuc2V2ZW5lbWVudEFhbm1ha2Vu',
  302. name: 'String',
  303. nullable: true,
  304. ),
  305. 'createLogoFid': debugSerializeParam(
  306. createLogoFid,
  307. ParamType.String,
  308. link:
  309. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  310. searchReference:
  311. 'reference=QiIKFgoNY3JlYXRlTG9nb0ZpZBIFMXZvanoqAhIAcgQIAyAAUAFaDWNyZWF0ZUxvZ29GaWRiGXVpdGdhYW5zZXZlbmVtZW50QWFubWFrZW4=',
  312. name: 'String',
  313. nullable: true,
  314. ),
  315. 'createFotosFids': debugSerializeParam(
  316. createFotosFids,
  317. ParamType.String,
  318. isList: true,
  319. link:
  320. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  321. searchReference:
  322. 'reference=QiIKGAoPY3JlYXRlRm90b3NGaWRzEgU5enlvdnIGEgIIAyAAUAFaD2NyZWF0ZUZvdG9zRmlkc2IZdWl0Z2FhbnNldmVuZW1lbnRBYW5tYWtlbg==',
  323. name: 'String',
  324. nullable: false,
  325. ),
  326. 'createLogoUrl': debugSerializeParam(
  327. createLogoUrl,
  328. ParamType.String,
  329. link:
  330. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  331. searchReference:
  332. 'reference=Qh4KFgoNY3JlYXRlTG9nb1VybBIFZGYzMnpyBAgEIABQAVoNY3JlYXRlTG9nb1VybGIZdWl0Z2FhbnNldmVuZW1lbnRBYW5tYWtlbg==',
  333. name: 'String',
  334. nullable: true,
  335. ),
  336. 'createFotosUrls': debugSerializeParam(
  337. createFotosUrls,
  338. ParamType.String,
  339. isList: true,
  340. link:
  341. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  342. searchReference:
  343. 'reference=QiIKGAoPY3JlYXRlRm90b3NVcmxzEgVjZDhwNXIGEgIIBCABUAFaD2NyZWF0ZUZvdG9zVXJsc2IZdWl0Z2FhbnNldmVuZW1lbnRBYW5tYWtlbg==',
  344. name: 'String',
  345. nullable: false,
  346. ),
  347. 'fotoboekOpen': debugSerializeParam(
  348. fotoboekOpen,
  349. ParamType.bool,
  350. link:
  351. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  352. searchReference:
  353. 'reference=QiYKFQoMZm90b2JvZWtPcGVuEgV5MTlhYioHEgVmYWxzZXIECAUgAVABWgxmb3RvYm9la09wZW5iGXVpdGdhYW5zZXZlbmVtZW50QWFubWFrZW4=',
  354. name: 'bool',
  355. nullable: false,
  356. ),
  357. 'fotoboekDoel': debugSerializeParam(
  358. fotoboekDoel,
  359. ParamType.String,
  360. link:
  361. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  362. searchReference:
  363. 'reference=QiEKFQoMZm90b2JvZWtEb2VsEgV2dTNpeSoCEgByBAgDIAFQAVoMZm90b2JvZWtEb2VsYhl1aXRnYWFuc2V2ZW5lbWVudEFhbm1ha2Vu',
  364. name: 'String',
  365. nullable: false,
  366. )
  367. }.entries,
  368. widgetStates: {
  369. 'textFieldTitelText': debugSerializeParam(
  370. textFieldTitelTextController?.text,
  371. ParamType.String,
  372. link:
  373. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  374. name: 'String',
  375. nullable: true,
  376. ),
  377. 'textFieldOmschrijvingText': debugSerializeParam(
  378. textFieldOmschrijvingTextController?.text,
  379. ParamType.String,
  380. link:
  381. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  382. name: 'String',
  383. nullable: true,
  384. ),
  385. 'dropDownHorecagelegenheidValue': debugSerializeParam(
  386. dropDownHorecagelegenheidValue,
  387. ParamType.String,
  388. link:
  389. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  390. name: 'String',
  391. nullable: true,
  392. ),
  393. 'dropDownCategorieenValue': debugSerializeParam(
  394. dropDownCategorieenValue,
  395. ParamType.String,
  396. isList: true,
  397. link:
  398. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  399. name: 'String',
  400. nullable: true,
  401. ),
  402. 'textFieldDatumStartText': debugSerializeParam(
  403. textFieldDatumStartTextController?.text,
  404. ParamType.String,
  405. link:
  406. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  407. name: 'String',
  408. nullable: true,
  409. ),
  410. 'textFieldDatumEindText': debugSerializeParam(
  411. textFieldDatumEindTextController?.text,
  412. ParamType.String,
  413. link:
  414. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  415. name: 'String',
  416. nullable: true,
  417. ),
  418. 'textFieldWebsiteURLText': debugSerializeParam(
  419. textFieldWebsiteURLTextController?.text,
  420. ParamType.String,
  421. link:
  422. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  423. name: 'String',
  424. nullable: true,
  425. ),
  426. 'textFieldTicketsURLText': debugSerializeParam(
  427. textFieldTicketsURLTextController?.text,
  428. ParamType.String,
  429. link:
  430. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  431. name: 'String',
  432. nullable: true,
  433. ),
  434. 'dropDownEntreeValue': debugSerializeParam(
  435. dropDownEntreeValue,
  436. ParamType.String,
  437. link:
  438. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  439. name: 'String',
  440. nullable: true,
  441. ),
  442. 'textFieldToelichtingEntreeText': debugSerializeParam(
  443. textFieldToelichtingEntreeTextController?.text,
  444. ParamType.String,
  445. link:
  446. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  447. name: 'String',
  448. nullable: true,
  449. ),
  450. 'textFieldEntreeprijsText': debugSerializeParam(
  451. textFieldEntreeprijsTextController?.text,
  452. ParamType.String,
  453. link:
  454. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  455. name: 'String',
  456. nullable: true,
  457. )
  458. }.entries,
  459. actionOutputs: {
  460. 'mijnHorecaResp': debugSerializeParam(
  461. mijnHorecaResp,
  462. ParamType.ApiResponse,
  463. link:
  464. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  465. name: 'ApiCallResponse',
  466. nullable: true,
  467. ),
  468. 'logoevenementuploadResult': debugSerializeParam(
  469. logoevenementuploadResult,
  470. ParamType.JSON,
  471. link:
  472. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  473. name: 'dynamic',
  474. nullable: true,
  475. ),
  476. 'fotoEvenementuploadResult': debugSerializeParam(
  477. fotoEvenementuploadResult,
  478. ParamType.JSON,
  479. link:
  480. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  481. name: 'dynamic',
  482. nullable: true,
  483. ),
  484. 'createResult': debugSerializeParam(
  485. createResult,
  486. ParamType.JSON,
  487. link:
  488. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  489. name: 'dynamic',
  490. nullable: true,
  491. )
  492. }.entries,
  493. generatorVariables: debugGeneratorVariables.entries,
  494. backendQueries: debugBackendQueries.entries,
  495. componentStates: {
  496. 'fotoboekGridComponentModel (FotoboekGridComponent)':
  497. fotoboekGridComponentModel?.toWidgetClassDebugData(),
  498. 'headerButtonsComponentModel (HeaderButtonsComponent)':
  499. headerButtonsComponentModel?.toWidgetClassDebugData(),
  500. 'drawerComponentModel (drawerComponent)':
  501. drawerComponentModel?.toWidgetClassDebugData(),
  502. ...widgetBuilderComponents.map(
  503. (key, value) => MapEntry(
  504. key,
  505. value.toWidgetClassDebugData(),
  506. ),
  507. ),
  508. }.withoutNulls.entries,
  509. link:
  510. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd/tab=uiBuilder&page=uitgaansevenementAanmaken',
  511. searchReference:
  512. 'reference=Ohl1aXRnYWFuc2V2ZW5lbWVudEFhbm1ha2VuUAFaGXVpdGdhYW5zZXZlbmVtZW50QWFubWFrZW4=',
  513. widgetClassName: 'uitgaansevenementAanmaken',
  514. );
  515. }