uitgaansevenement_aanmaken_model.dart 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561
  1. import '/backend/api_requests/api_calls.dart';
  2. import '/components/header_buttons_component_widget.dart';
  3. import '/flutter_flow/flutter_flow_drop_down.dart';
  4. import '/flutter_flow/flutter_flow_theme.dart';
  5. import '/flutter_flow/flutter_flow_util.dart';
  6. import '/flutter_flow/flutter_flow_widgets.dart';
  7. import '/flutter_flow/form_field_controller.dart';
  8. import '/flutter_flow/upload_data.dart';
  9. import '/shared/drawer_component/drawer_component_widget.dart';
  10. import '/shared/lege_lijst_component/lege_lijst_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. // Stores action output result for [Custom Action - evenementCreate] action in ButtonIndienen widget.
  213. dynamic? _createResult;
  214. set createResult(dynamic? value) {
  215. _createResult = value;
  216. debugLogWidgetClass(this);
  217. }
  218. dynamic? get createResult => _createResult;
  219. // Model for HeaderButtonsComponent component.
  220. late HeaderButtonsComponentModel headerButtonsComponentModel;
  221. // Model for drawerComponent component.
  222. late DrawerComponentModel drawerComponentModel;
  223. final Map<String, DebugDataField> debugGeneratorVariables = {};
  224. final Map<String, DebugDataField> debugBackendQueries = {};
  225. final Map<String, FlutterFlowModel> widgetBuilderComponents = {};
  226. @override
  227. void initState(BuildContext context) {
  228. headerButtonsComponentModel =
  229. createModel(context, () => HeaderButtonsComponentModel());
  230. drawerComponentModel = createModel(context, () => DrawerComponentModel());
  231. debugLogWidgetClass(this);
  232. }
  233. @override
  234. void dispose() {
  235. textFieldTitelFocusNode?.dispose();
  236. textFieldTitelTextController?.dispose();
  237. textFieldOmschrijvingFocusNode?.dispose();
  238. textFieldOmschrijvingTextController?.dispose();
  239. textFieldDatumStartFocusNode?.dispose();
  240. textFieldDatumStartTextController?.dispose();
  241. textFieldDatumEindFocusNode?.dispose();
  242. textFieldDatumEindTextController?.dispose();
  243. textFieldWebsiteURLFocusNode?.dispose();
  244. textFieldWebsiteURLTextController?.dispose();
  245. textFieldTicketsURLFocusNode?.dispose();
  246. textFieldTicketsURLTextController?.dispose();
  247. textFieldToelichtingEntreeFocusNode?.dispose();
  248. textFieldToelichtingEntreeTextController?.dispose();
  249. textFieldEntreeprijsFocusNode?.dispose();
  250. textFieldEntreeprijsTextController?.dispose();
  251. headerButtonsComponentModel.dispose();
  252. drawerComponentModel.dispose();
  253. }
  254. @override
  255. WidgetClassDebugData toWidgetClassDebugData() => WidgetClassDebugData(
  256. widgetParameters: {
  257. 'horecagelegenheidNid': debugSerializeParam(
  258. widget?.horecagelegenheidNid,
  259. ParamType.String,
  260. link:
  261. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  262. searchReference:
  263. 'reference=SiYKHgoUaG9yZWNhZ2VsZWdlbmhlaWROaWQSBnpwZWk2MHIECAMgAFABWhRob3JlY2FnZWxlZ2VuaGVpZE5pZA==',
  264. name: 'String',
  265. nullable: true,
  266. )
  267. }.withoutNulls.entries,
  268. localStates: {
  269. 'createHorecagelegenheidNid': debugSerializeParam(
  270. createHorecagelegenheidNid,
  271. ParamType.String,
  272. link:
  273. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  274. searchReference:
  275. 'reference=Qi8KIwoaY3JlYXRlSG9yZWNhZ2VsZWdlbmhlaWROaWQSBWd6bW1uKgISAHIECAMgAFABWhpjcmVhdGVIb3JlY2FnZWxlZ2VuaGVpZE5pZGIZdWl0Z2FhbnNldmVuZW1lbnRBYW5tYWtlbg==',
  276. name: 'String',
  277. nullable: true,
  278. ),
  279. 'createCategorieTids': debugSerializeParam(
  280. createCategorieTids,
  281. ParamType.String,
  282. isList: true,
  283. link:
  284. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  285. searchReference:
  286. 'reference=QiYKHAoTY3JlYXRlQ2F0ZWdvcmllVGlkcxIFcjQzeGRyBhICCAMgAVABWhNjcmVhdGVDYXRlZ29yaWVUaWRzYhl1aXRnYWFuc2V2ZW5lbWVudEFhbm1ha2Vu',
  287. name: 'String',
  288. nullable: false,
  289. ),
  290. 'createEntreeTid': debugSerializeParam(
  291. createEntreeTid,
  292. ParamType.String,
  293. link:
  294. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  295. searchReference:
  296. 'reference=QiQKGAoPY3JlYXRlRW50cmVlVGlkEgU2cm90YSoCEgByBAgDIABQAVoPY3JlYXRlRW50cmVlVGlkYhl1aXRnYWFuc2V2ZW5lbWVudEFhbm1ha2Vu',
  297. name: 'String',
  298. nullable: true,
  299. ),
  300. 'createLogoFid': debugSerializeParam(
  301. createLogoFid,
  302. ParamType.String,
  303. link:
  304. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  305. searchReference:
  306. 'reference=QiIKFgoNY3JlYXRlTG9nb0ZpZBIFMXZvanoqAhIAcgQIAyAAUAFaDWNyZWF0ZUxvZ29GaWRiGXVpdGdhYW5zZXZlbmVtZW50QWFubWFrZW4=',
  307. name: 'String',
  308. nullable: true,
  309. ),
  310. 'createFotosFids': debugSerializeParam(
  311. createFotosFids,
  312. ParamType.String,
  313. isList: true,
  314. link:
  315. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  316. searchReference:
  317. 'reference=QiIKGAoPY3JlYXRlRm90b3NGaWRzEgU5enlvdnIGEgIIAyAAUAFaD2NyZWF0ZUZvdG9zRmlkc2IZdWl0Z2FhbnNldmVuZW1lbnRBYW5tYWtlbg==',
  318. name: 'String',
  319. nullable: false,
  320. ),
  321. 'createLogoUrl': debugSerializeParam(
  322. createLogoUrl,
  323. ParamType.String,
  324. link:
  325. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  326. searchReference:
  327. 'reference=Qh4KFgoNY3JlYXRlTG9nb1VybBIFZGYzMnpyBAgEIABQAVoNY3JlYXRlTG9nb1VybGIZdWl0Z2FhbnNldmVuZW1lbnRBYW5tYWtlbg==',
  328. name: 'String',
  329. nullable: true,
  330. ),
  331. 'createFotosUrls': debugSerializeParam(
  332. createFotosUrls,
  333. ParamType.String,
  334. isList: true,
  335. link:
  336. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  337. searchReference:
  338. 'reference=QiIKGAoPY3JlYXRlRm90b3NVcmxzEgVjZDhwNXIGEgIIBCABUAFaD2NyZWF0ZUZvdG9zVXJsc2IZdWl0Z2FhbnNldmVuZW1lbnRBYW5tYWtlbg==',
  339. name: 'String',
  340. nullable: false,
  341. ),
  342. 'fotoboekOpen': debugSerializeParam(
  343. fotoboekOpen,
  344. ParamType.bool,
  345. link:
  346. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  347. searchReference:
  348. 'reference=QiYKFQoMZm90b2JvZWtPcGVuEgV5MTlhYioHEgVmYWxzZXIECAUgAVABWgxmb3RvYm9la09wZW5iGXVpdGdhYW5zZXZlbmVtZW50QWFubWFrZW4=',
  349. name: 'bool',
  350. nullable: false,
  351. ),
  352. 'fotoboekDoel': debugSerializeParam(
  353. fotoboekDoel,
  354. ParamType.String,
  355. link:
  356. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  357. searchReference:
  358. 'reference=QiEKFQoMZm90b2JvZWtEb2VsEgV2dTNpeSoCEgByBAgDIAFQAVoMZm90b2JvZWtEb2VsYhl1aXRnYWFuc2V2ZW5lbWVudEFhbm1ha2Vu',
  359. name: 'String',
  360. nullable: false,
  361. )
  362. }.entries,
  363. widgetStates: {
  364. 'textFieldTitelText': debugSerializeParam(
  365. textFieldTitelTextController?.text,
  366. ParamType.String,
  367. link:
  368. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  369. name: 'String',
  370. nullable: true,
  371. ),
  372. 'textFieldOmschrijvingText': debugSerializeParam(
  373. textFieldOmschrijvingTextController?.text,
  374. ParamType.String,
  375. link:
  376. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  377. name: 'String',
  378. nullable: true,
  379. ),
  380. 'dropDownHorecagelegenheidValue': debugSerializeParam(
  381. dropDownHorecagelegenheidValue,
  382. ParamType.String,
  383. link:
  384. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  385. name: 'String',
  386. nullable: true,
  387. ),
  388. 'dropDownCategorieenValue': debugSerializeParam(
  389. dropDownCategorieenValue,
  390. ParamType.String,
  391. isList: true,
  392. link:
  393. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  394. name: 'String',
  395. nullable: true,
  396. ),
  397. 'textFieldDatumStartText': debugSerializeParam(
  398. textFieldDatumStartTextController?.text,
  399. ParamType.String,
  400. link:
  401. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  402. name: 'String',
  403. nullable: true,
  404. ),
  405. 'textFieldDatumEindText': debugSerializeParam(
  406. textFieldDatumEindTextController?.text,
  407. ParamType.String,
  408. link:
  409. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  410. name: 'String',
  411. nullable: true,
  412. ),
  413. 'textFieldWebsiteURLText': debugSerializeParam(
  414. textFieldWebsiteURLTextController?.text,
  415. ParamType.String,
  416. link:
  417. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  418. name: 'String',
  419. nullable: true,
  420. ),
  421. 'textFieldTicketsURLText': debugSerializeParam(
  422. textFieldTicketsURLTextController?.text,
  423. ParamType.String,
  424. link:
  425. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  426. name: 'String',
  427. nullable: true,
  428. ),
  429. 'dropDownEntreeValue': debugSerializeParam(
  430. dropDownEntreeValue,
  431. ParamType.String,
  432. link:
  433. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  434. name: 'String',
  435. nullable: true,
  436. ),
  437. 'textFieldToelichtingEntreeText': debugSerializeParam(
  438. textFieldToelichtingEntreeTextController?.text,
  439. ParamType.String,
  440. link:
  441. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  442. name: 'String',
  443. nullable: true,
  444. ),
  445. 'textFieldEntreeprijsText': debugSerializeParam(
  446. textFieldEntreeprijsTextController?.text,
  447. ParamType.String,
  448. link:
  449. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  450. name: 'String',
  451. nullable: true,
  452. )
  453. }.entries,
  454. actionOutputs: {
  455. 'mijnHorecaResp': debugSerializeParam(
  456. mijnHorecaResp,
  457. ParamType.ApiResponse,
  458. link:
  459. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  460. name: 'ApiCallResponse',
  461. nullable: true,
  462. ),
  463. 'logoevenementuploadResult': debugSerializeParam(
  464. logoevenementuploadResult,
  465. ParamType.JSON,
  466. link:
  467. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  468. name: 'dynamic',
  469. nullable: true,
  470. ),
  471. 'fotoEvenementuploadResult': debugSerializeParam(
  472. fotoEvenementuploadResult,
  473. ParamType.JSON,
  474. link:
  475. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  476. name: 'dynamic',
  477. nullable: true,
  478. ),
  479. 'createResult': debugSerializeParam(
  480. createResult,
  481. ParamType.JSON,
  482. link:
  483. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  484. name: 'dynamic',
  485. nullable: true,
  486. )
  487. }.entries,
  488. generatorVariables: debugGeneratorVariables.entries,
  489. backendQueries: debugBackendQueries.entries,
  490. componentStates: {
  491. 'headerButtonsComponentModel (HeaderButtonsComponent)':
  492. headerButtonsComponentModel?.toWidgetClassDebugData(),
  493. 'drawerComponentModel (drawerComponent)':
  494. drawerComponentModel?.toWidgetClassDebugData(),
  495. ...widgetBuilderComponents.map(
  496. (key, value) => MapEntry(
  497. key,
  498. value.toWidgetClassDebugData(),
  499. ),
  500. ),
  501. }.withoutNulls.entries,
  502. link:
  503. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd/tab=uiBuilder&page=uitgaansevenementAanmaken',
  504. searchReference:
  505. 'reference=Ohl1aXRnYWFuc2V2ZW5lbWVudEFhbm1ha2VuUAFaGXVpdGdhYW5zZXZlbmVtZW50QWFubWFrZW4=',
  506. widgetClassName: 'uitgaansevenementAanmaken',
  507. );
  508. }