stadsactiviteit_aanmaken_model.dart 26 KB

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