stadsactiviteit_aanmaken_model.dart 26 KB

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