stadsactiviteit_aanmaken_model.dart 25 KB

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