uitgaansevenement_aanmaken_model.dart 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508
  1. import '/backend/api_requests/api_calls.dart';
  2. import '/backend/api_requests/api_streaming.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 'dart:convert';
  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. final Map<String, DebugDataField> debugGeneratorVariables = {};
  207. final Map<String, DebugDataField> debugBackendQueries = {};
  208. final Map<String, FlutterFlowModel> widgetBuilderComponents = {};
  209. @override
  210. void initState(BuildContext context) {
  211. debugLogWidgetClass(this);
  212. }
  213. @override
  214. void dispose() {
  215. textFieldTitelFocusNode?.dispose();
  216. textFieldTitelTextController?.dispose();
  217. textFieldOmschrijvingFocusNode?.dispose();
  218. textFieldOmschrijvingTextController?.dispose();
  219. textFieldDatumStartFocusNode?.dispose();
  220. textFieldDatumStartTextController?.dispose();
  221. textFieldDatumEindFocusNode?.dispose();
  222. textFieldDatumEindTextController?.dispose();
  223. textFieldWebsiteURLFocusNode?.dispose();
  224. textFieldWebsiteURLTextController?.dispose();
  225. textFieldTicketsURLFocusNode?.dispose();
  226. textFieldTicketsURLTextController?.dispose();
  227. textFieldToelichtingEntreeFocusNode?.dispose();
  228. textFieldToelichtingEntreeTextController?.dispose();
  229. textFieldEntreeprijsFocusNode?.dispose();
  230. textFieldEntreeprijsTextController?.dispose();
  231. }
  232. @override
  233. WidgetClassDebugData toWidgetClassDebugData() => WidgetClassDebugData(
  234. widgetParameters: {
  235. 'horecagelegenheidNid': debugSerializeParam(
  236. widget?.horecagelegenheidNid,
  237. ParamType.String,
  238. link:
  239. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  240. searchReference:
  241. 'reference=SiYKHgoUaG9yZWNhZ2VsZWdlbmhlaWROaWQSBnpwZWk2MHIECAMgAFABWhRob3JlY2FnZWxlZ2VuaGVpZE5pZA==',
  242. name: 'String',
  243. nullable: true,
  244. )
  245. }.withoutNulls.entries,
  246. localStates: {
  247. 'createHorecagelegenheidNid': debugSerializeParam(
  248. createHorecagelegenheidNid,
  249. ParamType.String,
  250. link:
  251. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  252. searchReference:
  253. 'reference=Qi8KIwoaY3JlYXRlSG9yZWNhZ2VsZWdlbmhlaWROaWQSBWd6bW1uKgISAHIECAMgAFABWhpjcmVhdGVIb3JlY2FnZWxlZ2VuaGVpZE5pZGIZdWl0Z2FhbnNldmVuZW1lbnRBYW5tYWtlbg==',
  254. name: 'String',
  255. nullable: true,
  256. ),
  257. 'createCategorieTids': debugSerializeParam(
  258. createCategorieTids,
  259. ParamType.String,
  260. isList: true,
  261. link:
  262. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  263. searchReference:
  264. 'reference=QiYKHAoTY3JlYXRlQ2F0ZWdvcmllVGlkcxIFcjQzeGRyBhICCAMgAVABWhNjcmVhdGVDYXRlZ29yaWVUaWRzYhl1aXRnYWFuc2V2ZW5lbWVudEFhbm1ha2Vu',
  265. name: 'String',
  266. nullable: false,
  267. ),
  268. 'createEntreeTid': debugSerializeParam(
  269. createEntreeTid,
  270. ParamType.String,
  271. link:
  272. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  273. searchReference:
  274. 'reference=QiQKGAoPY3JlYXRlRW50cmVlVGlkEgU2cm90YSoCEgByBAgDIABQAVoPY3JlYXRlRW50cmVlVGlkYhl1aXRnYWFuc2V2ZW5lbWVudEFhbm1ha2Vu',
  275. name: 'String',
  276. nullable: true,
  277. ),
  278. 'createLogoFid': debugSerializeParam(
  279. createLogoFid,
  280. ParamType.String,
  281. link:
  282. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  283. searchReference:
  284. 'reference=QiIKFgoNY3JlYXRlTG9nb0ZpZBIFMXZvanoqAhIAcgQIAyAAUAFaDWNyZWF0ZUxvZ29GaWRiGXVpdGdhYW5zZXZlbmVtZW50QWFubWFrZW4=',
  285. name: 'String',
  286. nullable: true,
  287. ),
  288. 'createFotosFids': debugSerializeParam(
  289. createFotosFids,
  290. ParamType.String,
  291. isList: true,
  292. link:
  293. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  294. searchReference:
  295. 'reference=QiIKGAoPY3JlYXRlRm90b3NGaWRzEgU5enlvdnIGEgIIAyAAUAFaD2NyZWF0ZUZvdG9zRmlkc2IZdWl0Z2FhbnNldmVuZW1lbnRBYW5tYWtlbg==',
  296. name: 'String',
  297. nullable: false,
  298. ),
  299. 'createLogoUrl': debugSerializeParam(
  300. createLogoUrl,
  301. ParamType.String,
  302. link:
  303. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  304. searchReference:
  305. 'reference=Qh4KFgoNY3JlYXRlTG9nb1VybBIFZGYzMnpyBAgEIABQAVoNY3JlYXRlTG9nb1VybGIZdWl0Z2FhbnNldmVuZW1lbnRBYW5tYWtlbg==',
  306. name: 'String',
  307. nullable: true,
  308. ),
  309. 'createFotosUrls': debugSerializeParam(
  310. createFotosUrls,
  311. ParamType.String,
  312. isList: true,
  313. link:
  314. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  315. searchReference:
  316. 'reference=QiIKGAoPY3JlYXRlRm90b3NVcmxzEgVjZDhwNXIGEgIIBCABUAFaD2NyZWF0ZUZvdG9zVXJsc2IZdWl0Z2FhbnNldmVuZW1lbnRBYW5tYWtlbg==',
  317. name: 'String',
  318. nullable: false,
  319. )
  320. }.entries,
  321. widgetStates: {
  322. 'textFieldTitelText': debugSerializeParam(
  323. textFieldTitelTextController?.text,
  324. ParamType.String,
  325. link:
  326. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  327. name: 'String',
  328. nullable: true,
  329. ),
  330. 'textFieldOmschrijvingText': debugSerializeParam(
  331. textFieldOmschrijvingTextController?.text,
  332. ParamType.String,
  333. link:
  334. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  335. name: 'String',
  336. nullable: true,
  337. ),
  338. 'dropDownHorecagelegenheidValue': debugSerializeParam(
  339. dropDownHorecagelegenheidValue,
  340. ParamType.String,
  341. link:
  342. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  343. name: 'String',
  344. nullable: true,
  345. ),
  346. 'dropDownCategorieenValue': debugSerializeParam(
  347. dropDownCategorieenValue,
  348. ParamType.String,
  349. isList: true,
  350. link:
  351. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  352. name: 'String',
  353. nullable: true,
  354. ),
  355. 'textFieldDatumStartText': debugSerializeParam(
  356. textFieldDatumStartTextController?.text,
  357. ParamType.String,
  358. link:
  359. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  360. name: 'String',
  361. nullable: true,
  362. ),
  363. 'textFieldDatumEindText': debugSerializeParam(
  364. textFieldDatumEindTextController?.text,
  365. ParamType.String,
  366. link:
  367. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  368. name: 'String',
  369. nullable: true,
  370. ),
  371. 'textFieldWebsiteURLText': debugSerializeParam(
  372. textFieldWebsiteURLTextController?.text,
  373. ParamType.String,
  374. link:
  375. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  376. name: 'String',
  377. nullable: true,
  378. ),
  379. 'textFieldTicketsURLText': debugSerializeParam(
  380. textFieldTicketsURLTextController?.text,
  381. ParamType.String,
  382. link:
  383. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  384. name: 'String',
  385. nullable: true,
  386. ),
  387. 'dropDownEntreeValue': debugSerializeParam(
  388. dropDownEntreeValue,
  389. ParamType.String,
  390. link:
  391. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  392. name: 'String',
  393. nullable: true,
  394. ),
  395. 'textFieldToelichtingEntreeText': debugSerializeParam(
  396. textFieldToelichtingEntreeTextController?.text,
  397. ParamType.String,
  398. link:
  399. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  400. name: 'String',
  401. nullable: true,
  402. ),
  403. 'textFieldEntreeprijsText': debugSerializeParam(
  404. textFieldEntreeprijsTextController?.text,
  405. ParamType.String,
  406. link:
  407. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  408. name: 'String',
  409. nullable: true,
  410. )
  411. }.entries,
  412. actionOutputs: {
  413. 'mijnHorecaResp': debugSerializeParam(
  414. mijnHorecaResp,
  415. ParamType.ApiResponse,
  416. link:
  417. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  418. name: 'ApiCallResponse',
  419. nullable: true,
  420. ),
  421. 'logoevenementuploadResult': debugSerializeParam(
  422. logoevenementuploadResult,
  423. ParamType.JSON,
  424. link:
  425. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  426. name: 'dynamic',
  427. nullable: true,
  428. ),
  429. 'fotoEvenementuploadResult': debugSerializeParam(
  430. fotoEvenementuploadResult,
  431. ParamType.JSON,
  432. link:
  433. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  434. name: 'dynamic',
  435. nullable: true,
  436. ),
  437. 'createResult': debugSerializeParam(
  438. createResult,
  439. ParamType.JSON,
  440. link:
  441. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=uitgaansevenementAanmaken',
  442. name: 'dynamic',
  443. nullable: true,
  444. )
  445. }.entries,
  446. generatorVariables: debugGeneratorVariables.entries,
  447. backendQueries: debugBackendQueries.entries,
  448. componentStates: {
  449. ...widgetBuilderComponents.map(
  450. (key, value) => MapEntry(
  451. key,
  452. value.toWidgetClassDebugData(),
  453. ),
  454. ),
  455. }.withoutNulls.entries,
  456. link:
  457. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd/tab=uiBuilder&page=uitgaansevenementAanmaken',
  458. searchReference:
  459. 'reference=Ohl1aXRnYWFuc2V2ZW5lbWVudEFhbm1ha2VuUAFaGXVpdGdhYW5zZXZlbmVtZW50QWFubWFrZW4=',
  460. widgetClassName: 'uitgaansevenementAanmaken',
  461. );
  462. }