stadsactiviteit_aanmaken_model.dart 22 KB

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