stadsactiviteit_aanmaken_copy3_model.dart 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632
  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_copy3_widget.dart'
  13. show StadsactiviteitAanmakenCopy3Widget;
  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 StadsactiviteitAanmakenCopy3Model
  20. extends FlutterFlowModel<StadsactiviteitAanmakenCopy3Widget> {
  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. String? _createLogoUrl;
  88. set createLogoUrl(String? value) {
  89. _createLogoUrl = value;
  90. debugLogWidgetClass(this);
  91. }
  92. String? get createLogoUrl => _createLogoUrl;
  93. late LoggableList<String> _createFotosUrls = LoggableList([]);
  94. set createFotosUrls(List<String> value) {
  95. if (value != null) {
  96. _createFotosUrls = LoggableList(value);
  97. }
  98. debugLogWidgetClass(this);
  99. }
  100. List<String> get createFotosUrls =>
  101. _createFotosUrls?..logger = () => debugLogWidgetClass(this);
  102. void addToCreateFotosUrls(String item) => createFotosUrls.add(item);
  103. void removeFromCreateFotosUrls(String item) => createFotosUrls.remove(item);
  104. void removeAtIndexFromCreateFotosUrls(int index) =>
  105. createFotosUrls.removeAt(index);
  106. void insertAtIndexInCreateFotosUrls(int index, String item) =>
  107. createFotosUrls.insert(index, item);
  108. void updateCreateFotosUrlsAtIndex(int index, Function(String) updateFn) =>
  109. createFotosUrls[index] = updateFn(createFotosUrls[index]);
  110. /// State fields for stateful widgets in this page.
  111. // State field(s) for TextFieldTitel widget.
  112. FocusNode? textFieldTitelFocusNode;
  113. TextEditingController? textFieldTitelTextController;
  114. String? Function(BuildContext, String?)?
  115. textFieldTitelTextControllerValidator;
  116. // State field(s) for TextFieldOmschrijving widget.
  117. FocusNode? textFieldOmschrijvingFocusNode;
  118. TextEditingController? textFieldOmschrijvingTextController;
  119. String? Function(BuildContext, String?)?
  120. textFieldOmschrijvingTextControllerValidator;
  121. // State field(s) for DropDownCategorieen widget.
  122. LoggableList<String>? _dropDownCategorieenValue;
  123. set dropDownCategorieenValue(List<String>? value) {
  124. if (value != null) {
  125. _dropDownCategorieenValue = LoggableList(value);
  126. } else {
  127. _dropDownCategorieenValue = null;
  128. }
  129. debugLogWidgetClass(this);
  130. }
  131. List<String>? get dropDownCategorieenValue =>
  132. _dropDownCategorieenValue?..logger = () => debugLogWidgetClass(this);
  133. FormFieldController<List<String>>? dropDownCategorieenValueController;
  134. DateTime? datePicked1;
  135. // State field(s) for TextFieldDatumStart widget.
  136. FocusNode? textFieldDatumStartFocusNode;
  137. TextEditingController? textFieldDatumStartTextController;
  138. String? Function(BuildContext, String?)?
  139. textFieldDatumStartTextControllerValidator;
  140. DateTime? datePicked2;
  141. // State field(s) for TextFieldDatumEind widget.
  142. FocusNode? textFieldDatumEindFocusNode;
  143. TextEditingController? textFieldDatumEindTextController;
  144. String? Function(BuildContext, String?)?
  145. textFieldDatumEindTextControllerValidator;
  146. // State field(s) for DropDownGemeenten-mijngemeenten widget.
  147. String? _dropDownGemeentenMijngemeentenValue;
  148. set dropDownGemeentenMijngemeentenValue(String? value) {
  149. _dropDownGemeentenMijngemeentenValue = value;
  150. debugLogWidgetClass(this);
  151. }
  152. String? get dropDownGemeentenMijngemeentenValue =>
  153. _dropDownGemeentenMijngemeentenValue;
  154. FormFieldController<String>? dropDownGemeentenMijngemeentenValueController;
  155. // State field(s) for DropDownProvincie widget.
  156. String? _dropDownProvincieValue;
  157. set dropDownProvincieValue(String? value) {
  158. _dropDownProvincieValue = value;
  159. debugLogWidgetClass(this);
  160. }
  161. String? get dropDownProvincieValue => _dropDownProvincieValue;
  162. FormFieldController<String>? dropDownProvincieValueController;
  163. // State field(s) for DropDownGemeente widget.
  164. String? _dropDownGemeenteValue;
  165. set dropDownGemeenteValue(String? value) {
  166. _dropDownGemeenteValue = value;
  167. debugLogWidgetClass(this);
  168. }
  169. String? get dropDownGemeenteValue => _dropDownGemeenteValue;
  170. FormFieldController<String>? dropDownGemeenteValueController;
  171. // State field(s) for DropDownPlaats widget.
  172. String? _dropDownPlaatsValue;
  173. set dropDownPlaatsValue(String? value) {
  174. _dropDownPlaatsValue = value;
  175. debugLogWidgetClass(this);
  176. }
  177. String? get dropDownPlaatsValue => _dropDownPlaatsValue;
  178. FormFieldController<String>? dropDownPlaatsValueController;
  179. // State field(s) for TextFieldAdres widget.
  180. FocusNode? textFieldAdresFocusNode;
  181. TextEditingController? textFieldAdresTextController;
  182. String? Function(BuildContext, String?)?
  183. textFieldAdresTextControllerValidator;
  184. // State field(s) for TextFieldPostcode widget.
  185. FocusNode? textFieldPostcodeFocusNode;
  186. TextEditingController? textFieldPostcodeTextController;
  187. String? Function(BuildContext, String?)?
  188. textFieldPostcodeTextControllerValidator;
  189. // State field(s) for TextFieldPlaats widget.
  190. FocusNode? textFieldPlaatsFocusNode;
  191. TextEditingController? textFieldPlaatsTextController;
  192. String? Function(BuildContext, String?)?
  193. textFieldPlaatsTextControllerValidator;
  194. // State field(s) for TextFieldOrganisator widget.
  195. FocusNode? textFieldOrganisatorFocusNode;
  196. TextEditingController? textFieldOrganisatorTextController;
  197. String? Function(BuildContext, String?)?
  198. textFieldOrganisatorTextControllerValidator;
  199. // State field(s) for TextFieldContact widget.
  200. FocusNode? textFieldContactFocusNode;
  201. TextEditingController? textFieldContactTextController;
  202. String? Function(BuildContext, String?)?
  203. textFieldContactTextControllerValidator;
  204. // State field(s) for TextFieldWebsiteURL widget.
  205. FocusNode? textFieldWebsiteURLFocusNode;
  206. TextEditingController? textFieldWebsiteURLTextController;
  207. String? Function(BuildContext, String?)?
  208. textFieldWebsiteURLTextControllerValidator;
  209. // State field(s) for DropDownEntree widget.
  210. String? _dropDownEntreeValue;
  211. set dropDownEntreeValue(String? value) {
  212. _dropDownEntreeValue = value;
  213. debugLogWidgetClass(this);
  214. }
  215. String? get dropDownEntreeValue => _dropDownEntreeValue;
  216. FormFieldController<String>? dropDownEntreeValueController;
  217. // State field(s) for TextFieldToelichtingEntree widget.
  218. FocusNode? textFieldToelichtingEntreeFocusNode;
  219. TextEditingController? textFieldToelichtingEntreeTextController;
  220. String? Function(BuildContext, String?)?
  221. textFieldToelichtingEntreeTextControllerValidator;
  222. // State field(s) for TextFieldEntreeprijs widget.
  223. FocusNode? textFieldEntreeprijsFocusNode;
  224. TextEditingController? textFieldEntreeprijsTextController;
  225. String? Function(BuildContext, String?)?
  226. textFieldEntreeprijsTextControllerValidator;
  227. bool isDataUploading_uploadDatalogoUpload = false;
  228. FFUploadedFile uploadedLocalFile_uploadDatalogoUpload =
  229. FFUploadedFile(bytes: Uint8List.fromList([]), originalFilename: '');
  230. // Stores action output result for [Custom Action - bestandUpload] action in ButtonLogo widget.
  231. dynamic? _logouploadResult;
  232. set logouploadResult(dynamic? value) {
  233. _logouploadResult = value;
  234. debugLogWidgetClass(this);
  235. }
  236. dynamic? get logouploadResult => _logouploadResult;
  237. bool isDataUploading_uploadDataFotoos2 = false;
  238. FFUploadedFile uploadedLocalFile_uploadDataFotoos2 =
  239. FFUploadedFile(bytes: Uint8List.fromList([]), originalFilename: '');
  240. // Stores action output result for [Custom Action - bestandUpload] action in ButtonFotos widget.
  241. dynamic? _fotouploadResult;
  242. set fotouploadResult(dynamic? value) {
  243. _fotouploadResult = value;
  244. debugLogWidgetClass(this);
  245. }
  246. dynamic? get fotouploadResult => _fotouploadResult;
  247. // Stores action output result for [Custom Action - stadsactiviteitCreate] action in ButtonIndienen widget.
  248. dynamic? _createResult;
  249. set createResult(dynamic? value) {
  250. _createResult = value;
  251. debugLogWidgetClass(this);
  252. }
  253. dynamic? get createResult => _createResult;
  254. final Map<String, DebugDataField> debugGeneratorVariables = {};
  255. final Map<String, DebugDataField> debugBackendQueries = {};
  256. final Map<String, FlutterFlowModel> widgetBuilderComponents = {};
  257. @override
  258. void initState(BuildContext context) {
  259. debugLogWidgetClass(this);
  260. }
  261. @override
  262. void dispose() {
  263. textFieldTitelFocusNode?.dispose();
  264. textFieldTitelTextController?.dispose();
  265. textFieldOmschrijvingFocusNode?.dispose();
  266. textFieldOmschrijvingTextController?.dispose();
  267. textFieldDatumStartFocusNode?.dispose();
  268. textFieldDatumStartTextController?.dispose();
  269. textFieldDatumEindFocusNode?.dispose();
  270. textFieldDatumEindTextController?.dispose();
  271. textFieldAdresFocusNode?.dispose();
  272. textFieldAdresTextController?.dispose();
  273. textFieldPostcodeFocusNode?.dispose();
  274. textFieldPostcodeTextController?.dispose();
  275. textFieldPlaatsFocusNode?.dispose();
  276. textFieldPlaatsTextController?.dispose();
  277. textFieldOrganisatorFocusNode?.dispose();
  278. textFieldOrganisatorTextController?.dispose();
  279. textFieldContactFocusNode?.dispose();
  280. textFieldContactTextController?.dispose();
  281. textFieldWebsiteURLFocusNode?.dispose();
  282. textFieldWebsiteURLTextController?.dispose();
  283. textFieldToelichtingEntreeFocusNode?.dispose();
  284. textFieldToelichtingEntreeTextController?.dispose();
  285. textFieldEntreeprijsFocusNode?.dispose();
  286. textFieldEntreeprijsTextController?.dispose();
  287. }
  288. @override
  289. WidgetClassDebugData toWidgetClassDebugData() => WidgetClassDebugData(
  290. localStates: {
  291. 'createProvincieID': debugSerializeParam(
  292. createProvincieID,
  293. ParamType.String,
  294. link:
  295. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  296. searchReference:
  297. 'reference=QiYKGgoRY3JlYXRlUHJvdmluY2llSUQSBXIwb2E2KgISAHIECAMgAFABWhFjcmVhdGVQcm92aW5jaWVJRGIcc3RhZHNhY3Rpdml0ZWl0QWFubWFrZW5Db3B5Mw==',
  298. name: 'String',
  299. nullable: true,
  300. ),
  301. 'createGemeenteID': debugSerializeParam(
  302. createGemeenteID,
  303. ParamType.String,
  304. link:
  305. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  306. searchReference:
  307. 'reference=QiUKGQoQY3JlYXRlR2VtZWVudGVJRBIFYmFwZW0qAhIAcgQIAyAAUAFaEGNyZWF0ZUdlbWVlbnRlSURiHHN0YWRzYWN0aXZpdGVpdEFhbm1ha2VuQ29weTM=',
  308. name: 'String',
  309. nullable: true,
  310. ),
  311. 'createPlaatsID': debugSerializeParam(
  312. createPlaatsID,
  313. ParamType.String,
  314. link:
  315. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  316. searchReference:
  317. 'reference=QiMKFwoOY3JlYXRlUGxhYXRzSUQSBWd6bW1uKgISAHIECAMgAFABWg5jcmVhdGVQbGFhdHNJRGIcc3RhZHNhY3Rpdml0ZWl0QWFubWFrZW5Db3B5Mw==',
  318. name: 'String',
  319. nullable: true,
  320. ),
  321. 'createCategorieTids': debugSerializeParam(
  322. createCategorieTids,
  323. ParamType.String,
  324. isList: true,
  325. link:
  326. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  327. searchReference:
  328. 'reference=QiYKHAoTY3JlYXRlQ2F0ZWdvcmllVGlkcxIFcjQzeGRyBhICCAMgAVABWhNjcmVhdGVDYXRlZ29yaWVUaWRzYhxzdGFkc2FjdGl2aXRlaXRBYW5tYWtlbkNvcHkz',
  329. name: 'String',
  330. nullable: false,
  331. ),
  332. 'createEntreeTid': debugSerializeParam(
  333. createEntreeTid,
  334. ParamType.String,
  335. link:
  336. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  337. searchReference:
  338. 'reference=QiQKGAoPY3JlYXRlRW50cmVlVGlkEgU2cm90YSoCEgByBAgDIABQAVoPY3JlYXRlRW50cmVlVGlkYhxzdGFkc2FjdGl2aXRlaXRBYW5tYWtlbkNvcHkz',
  339. name: 'String',
  340. nullable: true,
  341. ),
  342. 'createLogoFid': debugSerializeParam(
  343. createLogoFid,
  344. ParamType.String,
  345. link:
  346. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  347. searchReference:
  348. 'reference=QiIKFgoNY3JlYXRlTG9nb0ZpZBIFMXZvanoqAhIAcgQIAyAAUAFaDWNyZWF0ZUxvZ29GaWRiHHN0YWRzYWN0aXZpdGVpdEFhbm1ha2VuQ29weTM=',
  349. name: 'String',
  350. nullable: true,
  351. ),
  352. 'createFotosFids': debugSerializeParam(
  353. createFotosFids,
  354. ParamType.String,
  355. isList: true,
  356. link:
  357. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  358. searchReference:
  359. 'reference=QiIKGAoPY3JlYXRlRm90b3NGaWRzEgU5enlvdnIGEgIIAyAAUAFaD2NyZWF0ZUZvdG9zRmlkc2Icc3RhZHNhY3Rpdml0ZWl0QWFubWFrZW5Db3B5Mw==',
  360. name: 'String',
  361. nullable: false,
  362. ),
  363. 'createLogoUrl': debugSerializeParam(
  364. createLogoUrl,
  365. ParamType.String,
  366. link:
  367. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  368. searchReference:
  369. 'reference=Qh4KFgoNY3JlYXRlTG9nb1VybBIFZGYzMnpyBAgEIABQAVoNY3JlYXRlTG9nb1VybGIcc3RhZHNhY3Rpdml0ZWl0QWFubWFrZW5Db3B5Mw==',
  370. name: 'String',
  371. nullable: true,
  372. ),
  373. 'createFotosUrls': debugSerializeParam(
  374. createFotosUrls,
  375. ParamType.String,
  376. isList: true,
  377. link:
  378. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  379. searchReference:
  380. 'reference=QiIKGAoPY3JlYXRlRm90b3NVcmxzEgVjZDhwNXIGEgIIBCABUAFaD2NyZWF0ZUZvdG9zVXJsc2Icc3RhZHNhY3Rpdml0ZWl0QWFubWFrZW5Db3B5Mw==',
  381. name: 'String',
  382. nullable: false,
  383. )
  384. }.entries,
  385. widgetStates: {
  386. 'textFieldTitelText': debugSerializeParam(
  387. textFieldTitelTextController?.text,
  388. ParamType.String,
  389. link:
  390. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  391. name: 'String',
  392. nullable: true,
  393. ),
  394. 'textFieldOmschrijvingText': debugSerializeParam(
  395. textFieldOmschrijvingTextController?.text,
  396. ParamType.String,
  397. link:
  398. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  399. name: 'String',
  400. nullable: true,
  401. ),
  402. 'dropDownCategorieenValue': debugSerializeParam(
  403. dropDownCategorieenValue,
  404. ParamType.String,
  405. isList: true,
  406. link:
  407. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  408. name: 'String',
  409. nullable: true,
  410. ),
  411. 'textFieldDatumStartText': debugSerializeParam(
  412. textFieldDatumStartTextController?.text,
  413. ParamType.String,
  414. link:
  415. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  416. name: 'String',
  417. nullable: true,
  418. ),
  419. 'textFieldDatumEindText': debugSerializeParam(
  420. textFieldDatumEindTextController?.text,
  421. ParamType.String,
  422. link:
  423. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  424. name: 'String',
  425. nullable: true,
  426. ),
  427. 'dropDownGemeentenMijngemeentenValue': debugSerializeParam(
  428. dropDownGemeentenMijngemeentenValue,
  429. ParamType.String,
  430. link:
  431. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  432. name: 'String',
  433. nullable: true,
  434. ),
  435. 'dropDownProvincieValue': debugSerializeParam(
  436. dropDownProvincieValue,
  437. ParamType.String,
  438. link:
  439. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  440. name: 'String',
  441. nullable: true,
  442. ),
  443. 'dropDownGemeenteValue': debugSerializeParam(
  444. dropDownGemeenteValue,
  445. ParamType.String,
  446. link:
  447. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  448. name: 'String',
  449. nullable: true,
  450. ),
  451. 'dropDownPlaatsValue': debugSerializeParam(
  452. dropDownPlaatsValue,
  453. ParamType.String,
  454. link:
  455. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  456. name: 'String',
  457. nullable: true,
  458. ),
  459. 'textFieldAdresText': debugSerializeParam(
  460. textFieldAdresTextController?.text,
  461. ParamType.String,
  462. link:
  463. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  464. name: 'String',
  465. nullable: true,
  466. ),
  467. 'textFieldPostcodeText': debugSerializeParam(
  468. textFieldPostcodeTextController?.text,
  469. ParamType.String,
  470. link:
  471. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  472. name: 'String',
  473. nullable: true,
  474. ),
  475. 'textFieldPlaatsText': debugSerializeParam(
  476. textFieldPlaatsTextController?.text,
  477. ParamType.String,
  478. link:
  479. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  480. name: 'String',
  481. nullable: true,
  482. ),
  483. 'textFieldOrganisatorText': debugSerializeParam(
  484. textFieldOrganisatorTextController?.text,
  485. ParamType.String,
  486. link:
  487. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  488. name: 'String',
  489. nullable: true,
  490. ),
  491. 'textFieldContactText': debugSerializeParam(
  492. textFieldContactTextController?.text,
  493. ParamType.String,
  494. link:
  495. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  496. name: 'String',
  497. nullable: true,
  498. ),
  499. 'textFieldWebsiteURLText': debugSerializeParam(
  500. textFieldWebsiteURLTextController?.text,
  501. ParamType.String,
  502. link:
  503. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  504. name: 'String',
  505. nullable: true,
  506. ),
  507. 'dropDownEntreeValue': debugSerializeParam(
  508. dropDownEntreeValue,
  509. ParamType.String,
  510. link:
  511. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  512. name: 'String',
  513. nullable: true,
  514. ),
  515. 'textFieldToelichtingEntreeText': debugSerializeParam(
  516. textFieldToelichtingEntreeTextController?.text,
  517. ParamType.String,
  518. link:
  519. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  520. name: 'String',
  521. nullable: true,
  522. ),
  523. 'textFieldEntreeprijsText': debugSerializeParam(
  524. textFieldEntreeprijsTextController?.text,
  525. ParamType.String,
  526. link:
  527. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  528. name: 'String',
  529. nullable: true,
  530. )
  531. }.entries,
  532. actionOutputs: {
  533. 'logouploadResult': debugSerializeParam(
  534. logouploadResult,
  535. ParamType.JSON,
  536. link:
  537. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  538. name: 'dynamic',
  539. nullable: true,
  540. ),
  541. 'fotouploadResult': debugSerializeParam(
  542. fotouploadResult,
  543. ParamType.JSON,
  544. link:
  545. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  546. name: 'dynamic',
  547. nullable: true,
  548. ),
  549. 'createResult': debugSerializeParam(
  550. createResult,
  551. ParamType.JSON,
  552. link:
  553. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd?tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  554. name: 'dynamic',
  555. nullable: true,
  556. )
  557. }.entries,
  558. generatorVariables: debugGeneratorVariables.entries,
  559. backendQueries: debugBackendQueries.entries,
  560. componentStates: {
  561. ...widgetBuilderComponents.map(
  562. (key, value) => MapEntry(
  563. key,
  564. value.toWidgetClassDebugData(),
  565. ),
  566. ),
  567. }.withoutNulls.entries,
  568. link:
  569. 'https://app.flutterflow.io/project/uitgaanskrant-1qhvtd/tab=uiBuilder&page=stadsactiviteitAanmakenCopy3',
  570. searchReference:
  571. 'reference=OhxzdGFkc2FjdGl2aXRlaXRBYW5tYWtlbkNvcHkzUAFaHHN0YWRzYWN0aXZpdGVpdEFhbm1ha2VuQ29weTM=',
  572. widgetClassName: 'stadsactiviteitAanmakenCopy3',
  573. );
  574. }