uitgaansevenement_aanmaken_model.dart 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  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. /// State fields for stateful widgets in this page.
  102. // Stores action output result for [Backend Call - API (MijnHorecagelegenheden)] action in uitgaansevenementAanmaken widget.
  103. ApiCallResponse? _mijnHorecaResp;
  104. set mijnHorecaResp(ApiCallResponse? value) {
  105. _mijnHorecaResp = value;
  106. debugLogWidgetClass(this);
  107. }
  108. ApiCallResponse? get mijnHorecaResp => _mijnHorecaResp;
  109. // State field(s) for TextFieldTitel widget.
  110. FocusNode? textFieldTitelFocusNode;
  111. TextEditingController? textFieldTitelTextController;
  112. String? Function(BuildContext, String?)?
  113. textFieldTitelTextControllerValidator;
  114. // State field(s) for TextFieldOmschrijving widget.
  115. FocusNode? textFieldOmschrijvingFocusNode;
  116. TextEditingController? textFieldOmschrijvingTextController;
  117. String? Function(BuildContext, String?)?
  118. textFieldOmschrijvingTextControllerValidator;
  119. // State field(s) for DropDownHorecagelegenheid widget.
  120. String? _dropDownHorecagelegenheidValue;
  121. set dropDownHorecagelegenheidValue(String? value) {
  122. _dropDownHorecagelegenheidValue = value;
  123. debugLogWidgetClass(this);
  124. }
  125. String? get dropDownHorecagelegenheidValue => _dropDownHorecagelegenheidValue;
  126. FormFieldController<String>? dropDownHorecagelegenheidValueController;
  127. // State field(s) for DropDownCategorieen widget.
  128. LoggableList<String>? _dropDownCategorieenValue;
  129. set dropDownCategorieenValue(List<String>? value) {
  130. if (value != null) {
  131. _dropDownCategorieenValue = LoggableList(value);
  132. } else {
  133. _dropDownCategorieenValue = null;
  134. }
  135. debugLogWidgetClass(this);
  136. }
  137. List<String>? get dropDownCategorieenValue =>
  138. _dropDownCategorieenValue?..logger = () => debugLogWidgetClass(this);
  139. FormFieldController<List<String>>? dropDownCategorieenValueController;
  140. DateTime? datePicked1;
  141. // State field(s) for TextFieldDatumStart widget.
  142. FocusNode? textFieldDatumStartFocusNode;
  143. TextEditingController? textFieldDatumStartTextController;
  144. String? Function(BuildContext, String?)?
  145. textFieldDatumStartTextControllerValidator;
  146. DateTime? datePicked2;
  147. // State field(s) for TextFieldDatumEind widget.
  148. FocusNode? textFieldDatumEindFocusNode;
  149. TextEditingController? textFieldDatumEindTextController;
  150. String? Function(BuildContext, String?)?
  151. textFieldDatumEindTextControllerValidator;
  152. // State field(s) for TextFieldWebsiteURL widget.
  153. FocusNode? textFieldWebsiteURLFocusNode;
  154. TextEditingController? textFieldWebsiteURLTextController;
  155. String? Function(BuildContext, String?)?
  156. textFieldWebsiteURLTextControllerValidator;
  157. // State field(s) for TextFieldTicketsURL widget.
  158. FocusNode? textFieldTicketsURLFocusNode;
  159. TextEditingController? textFieldTicketsURLTextController;
  160. String? Function(BuildContext, String?)?
  161. textFieldTicketsURLTextControllerValidator;
  162. // State field(s) for DropDownEntree widget.
  163. String? _dropDownEntreeValue;
  164. set dropDownEntreeValue(String? value) {
  165. _dropDownEntreeValue = value;
  166. debugLogWidgetClass(this);
  167. }
  168. String? get dropDownEntreeValue => _dropDownEntreeValue;
  169. FormFieldController<String>? dropDownEntreeValueController;
  170. // State field(s) for TextFieldToelichtingEntree widget.
  171. FocusNode? textFieldToelichtingEntreeFocusNode;
  172. TextEditingController? textFieldToelichtingEntreeTextController;
  173. String? Function(BuildContext, String?)?
  174. textFieldToelichtingEntreeTextControllerValidator;
  175. // State field(s) for TextFieldEntreeprijs widget.
  176. FocusNode? textFieldEntreeprijsFocusNode;
  177. TextEditingController? textFieldEntreeprijsTextController;
  178. String? Function(BuildContext, String?)?
  179. textFieldEntreeprijsTextControllerValidator;
  180. bool isDataUploading_uploadDataLogoEvenement = false;
  181. FFUploadedFile uploadedLocalFile_uploadDataLogoEvenement =
  182. FFUploadedFile(bytes: Uint8List.fromList([]), originalFilename: '');
  183. // Stores action output result for [Custom Action - bestandUpload] action in ButtonLogo widget.
  184. dynamic? _logoevenementuploadResult;
  185. set logoevenementuploadResult(dynamic? value) {
  186. _logoevenementuploadResult = value;
  187. debugLogWidgetClass(this);
  188. }
  189. dynamic? get logoevenementuploadResult => _logoevenementuploadResult;
  190. bool isDataUploading_uploadDataFotosEvent = false;
  191. FFUploadedFile uploadedLocalFile_uploadDataFotosEvent =
  192. FFUploadedFile(bytes: Uint8List.fromList([]), originalFilename: '');
  193. // Stores action output result for [Custom Action - bestandUpload] action in ButtonFotos widget.
  194. dynamic? _fotoEvenementuploadResult;
  195. set fotoEvenementuploadResult(dynamic? value) {
  196. _fotoEvenementuploadResult = value;
  197. debugLogWidgetClass(this);
  198. }
  199. dynamic? get fotoEvenementuploadResult => _fotoEvenementuploadResult;
  200. // Stores action output result for [Custom Action - evenementCreate] action in ButtonIndienen widget.
  201. dynamic? _createResult;
  202. set createResult(dynamic? value) {
  203. _createResult = value;
  204. debugLogWidgetClass(this);
  205. }
  206. dynamic? get createResult => _createResult;
  207. // Model for HeaderButtonsComponent component.
  208. late HeaderButtonsComponentModel headerButtonsComponentModel;
  209. // Model for drawerComponent component.
  210. late DrawerComponentModel drawerComponentModel;
  211. final Map<String, DebugDataField> debugGeneratorVariables = {};
  212. final Map<String, DebugDataField> debugBackendQueries = {};
  213. final Map<String, FlutterFlowModel> widgetBuilderComponents = {};
  214. @override
  215. void initState(BuildContext context) {
  216. headerButtonsComponentModel =
  217. createModel(context, () => HeaderButtonsComponentModel());
  218. drawerComponentModel = createModel(context, () => DrawerComponentModel());
  219. debugLogWidgetClass(this);
  220. }
  221. @override
  222. void dispose() {
  223. textFieldTitelFocusNode?.dispose();
  224. textFieldTitelTextController?.dispose();
  225. textFieldOmschrijvingFocusNode?.dispose();
  226. textFieldOmschrijvingTextController?.dispose();
  227. textFieldDatumStartFocusNode?.dispose();
  228. textFieldDatumStartTextController?.dispose();
  229. textFieldDatumEindFocusNode?.dispose();
  230. textFieldDatumEindTextController?.dispose();
  231. textFieldWebsiteURLFocusNode?.dispose();
  232. textFieldWebsiteURLTextController?.dispose();
  233. textFieldTicketsURLFocusNode?.dispose();
  234. textFieldTicketsURLTextController?.dispose();
  235. textFieldToelichtingEntreeFocusNode?.dispose();
  236. textFieldToelichtingEntreeTextController?.dispose();
  237. textFieldEntreeprijsFocusNode?.dispose();
  238. textFieldEntreeprijsTextController?.dispose();
  239. headerButtonsComponentModel.dispose();
  240. drawerComponentModel.dispose();
  241. }
  242. @override
  243. WidgetClassDebugData toWidgetClassDebugData() => WidgetClassDebugData(
  244. widgetParameters: {
  245. 'horecagelegenheidNid': debugSerializeParam(
  246. widget?.horecagelegenheidNid,
  247. ParamType.String,
  248. link:
  249. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  250. searchReference:
  251. 'reference=SiYKHgoUaG9yZWNhZ2VsZWdlbmhlaWROaWQSBnpwZWk2MHIECAMgAFABWhRob3JlY2FnZWxlZ2VuaGVpZE5pZA==',
  252. name: 'String',
  253. nullable: true,
  254. )
  255. }.withoutNulls.entries,
  256. localStates: {
  257. 'createHorecagelegenheidNid': debugSerializeParam(
  258. createHorecagelegenheidNid,
  259. ParamType.String,
  260. link:
  261. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  262. searchReference:
  263. 'reference=Qi8KIwoaY3JlYXRlSG9yZWNhZ2VsZWdlbmhlaWROaWQSBWd6bW1uKgISAHIECAMgAFABWhpjcmVhdGVIb3JlY2FnZWxlZ2VuaGVpZE5pZGIZdWl0Z2FhbnNldmVuZW1lbnRBYW5tYWtlbg==',
  264. name: 'String',
  265. nullable: true,
  266. ),
  267. 'createCategorieTids': debugSerializeParam(
  268. createCategorieTids,
  269. ParamType.String,
  270. isList: true,
  271. link:
  272. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  273. searchReference:
  274. 'reference=QiYKHAoTY3JlYXRlQ2F0ZWdvcmllVGlkcxIFcjQzeGRyBhICCAMgAVABWhNjcmVhdGVDYXRlZ29yaWVUaWRzYhl1aXRnYWFuc2V2ZW5lbWVudEFhbm1ha2Vu',
  275. name: 'String',
  276. nullable: false,
  277. ),
  278. 'createEntreeTid': debugSerializeParam(
  279. createEntreeTid,
  280. ParamType.String,
  281. link:
  282. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  283. searchReference:
  284. 'reference=QiQKGAoPY3JlYXRlRW50cmVlVGlkEgU2cm90YSoCEgByBAgDIABQAVoPY3JlYXRlRW50cmVlVGlkYhl1aXRnYWFuc2V2ZW5lbWVudEFhbm1ha2Vu',
  285. name: 'String',
  286. nullable: true,
  287. ),
  288. 'createLogoFid': debugSerializeParam(
  289. createLogoFid,
  290. ParamType.String,
  291. link:
  292. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  293. searchReference:
  294. 'reference=QiIKFgoNY3JlYXRlTG9nb0ZpZBIFMXZvanoqAhIAcgQIAyAAUAFaDWNyZWF0ZUxvZ29GaWRiGXVpdGdhYW5zZXZlbmVtZW50QWFubWFrZW4=',
  295. name: 'String',
  296. nullable: true,
  297. ),
  298. 'createFotosFids': debugSerializeParam(
  299. createFotosFids,
  300. ParamType.String,
  301. isList: true,
  302. link:
  303. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  304. searchReference:
  305. 'reference=QiIKGAoPY3JlYXRlRm90b3NGaWRzEgU5enlvdnIGEgIIAyAAUAFaD2NyZWF0ZUZvdG9zRmlkc2IZdWl0Z2FhbnNldmVuZW1lbnRBYW5tYWtlbg==',
  306. name: 'String',
  307. nullable: false,
  308. ),
  309. 'createLogoUrl': debugSerializeParam(
  310. createLogoUrl,
  311. ParamType.String,
  312. link:
  313. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  314. searchReference:
  315. 'reference=Qh4KFgoNY3JlYXRlTG9nb1VybBIFZGYzMnpyBAgEIABQAVoNY3JlYXRlTG9nb1VybGIZdWl0Z2FhbnNldmVuZW1lbnRBYW5tYWtlbg==',
  316. name: 'String',
  317. nullable: true,
  318. ),
  319. 'createFotosUrls': debugSerializeParam(
  320. createFotosUrls,
  321. ParamType.String,
  322. isList: true,
  323. link:
  324. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  325. searchReference:
  326. 'reference=QiIKGAoPY3JlYXRlRm90b3NVcmxzEgVjZDhwNXIGEgIIBCABUAFaD2NyZWF0ZUZvdG9zVXJsc2IZdWl0Z2FhbnNldmVuZW1lbnRBYW5tYWtlbg==',
  327. name: 'String',
  328. nullable: false,
  329. )
  330. }.entries,
  331. widgetStates: {
  332. 'textFieldTitelText': debugSerializeParam(
  333. textFieldTitelTextController?.text,
  334. ParamType.String,
  335. link:
  336. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  337. name: 'String',
  338. nullable: true,
  339. ),
  340. 'textFieldOmschrijvingText': debugSerializeParam(
  341. textFieldOmschrijvingTextController?.text,
  342. ParamType.String,
  343. link:
  344. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  345. name: 'String',
  346. nullable: true,
  347. ),
  348. 'dropDownHorecagelegenheidValue': debugSerializeParam(
  349. dropDownHorecagelegenheidValue,
  350. ParamType.String,
  351. link:
  352. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  353. name: 'String',
  354. nullable: true,
  355. ),
  356. 'dropDownCategorieenValue': debugSerializeParam(
  357. dropDownCategorieenValue,
  358. ParamType.String,
  359. isList: true,
  360. link:
  361. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  362. name: 'String',
  363. nullable: true,
  364. ),
  365. 'textFieldDatumStartText': debugSerializeParam(
  366. textFieldDatumStartTextController?.text,
  367. ParamType.String,
  368. link:
  369. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  370. name: 'String',
  371. nullable: true,
  372. ),
  373. 'textFieldDatumEindText': debugSerializeParam(
  374. textFieldDatumEindTextController?.text,
  375. ParamType.String,
  376. link:
  377. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  378. name: 'String',
  379. nullable: true,
  380. ),
  381. 'textFieldWebsiteURLText': debugSerializeParam(
  382. textFieldWebsiteURLTextController?.text,
  383. ParamType.String,
  384. link:
  385. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  386. name: 'String',
  387. nullable: true,
  388. ),
  389. 'textFieldTicketsURLText': debugSerializeParam(
  390. textFieldTicketsURLTextController?.text,
  391. ParamType.String,
  392. link:
  393. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  394. name: 'String',
  395. nullable: true,
  396. ),
  397. 'dropDownEntreeValue': debugSerializeParam(
  398. dropDownEntreeValue,
  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. 'textFieldToelichtingEntreeText': debugSerializeParam(
  406. textFieldToelichtingEntreeTextController?.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. 'textFieldEntreeprijsText': debugSerializeParam(
  414. textFieldEntreeprijsTextController?.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. }.entries,
  422. actionOutputs: {
  423. 'mijnHorecaResp': debugSerializeParam(
  424. mijnHorecaResp,
  425. ParamType.ApiResponse,
  426. link:
  427. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  428. name: 'ApiCallResponse',
  429. nullable: true,
  430. ),
  431. 'logoevenementuploadResult': debugSerializeParam(
  432. logoevenementuploadResult,
  433. ParamType.JSON,
  434. link:
  435. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  436. name: 'dynamic',
  437. nullable: true,
  438. ),
  439. 'fotoEvenementuploadResult': debugSerializeParam(
  440. fotoEvenementuploadResult,
  441. ParamType.JSON,
  442. link:
  443. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  444. name: 'dynamic',
  445. nullable: true,
  446. ),
  447. 'createResult': debugSerializeParam(
  448. createResult,
  449. ParamType.JSON,
  450. link:
  451. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  452. name: 'dynamic',
  453. nullable: true,
  454. )
  455. }.entries,
  456. generatorVariables: debugGeneratorVariables.entries,
  457. backendQueries: debugBackendQueries.entries,
  458. componentStates: {
  459. 'headerButtonsComponentModel (HeaderButtonsComponent)':
  460. headerButtonsComponentModel?.toWidgetClassDebugData(),
  461. 'drawerComponentModel (drawerComponent)':
  462. drawerComponentModel?.toWidgetClassDebugData(),
  463. ...widgetBuilderComponents.map(
  464. (key, value) => MapEntry(
  465. key,
  466. value.toWidgetClassDebugData(),
  467. ),
  468. ),
  469. }.withoutNulls.entries,
  470. link:
  471. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd/tab=uiBuilder&page=uitgaansevenementAanmaken',
  472. searchReference:
  473. 'reference=Ohl1aXRnYWFuc2V2ZW5lbWVudEFhbm1ha2VuUAFaGXVpdGdhYW5zZXZlbmVtZW50QWFubWFrZW4=',
  474. widgetClassName: 'uitgaansevenementAanmaken',
  475. );
  476. }