uitgaansevenement_aanmaken_model.dart 21 KB

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