add initialOrga as vide
This commit is contained in:
@@ -380,8 +380,8 @@ class _EditEventState extends State<EditEvent>
|
||||
|
||||
imgUrl = widget.events!.imgUrl ?? "";
|
||||
inputDesc.text = widget.events!.description ?? "";
|
||||
initialTags = List<String>.from(widget.events!.tags as List);
|
||||
initialOrga = List<String>.from(widget.events!.organizers as List);
|
||||
initialTags = List<String>.from((widget.events?.tags as List?) ?? []);
|
||||
initialOrga = List<String>.from((widget.events?.organizers as List?) ?? []);
|
||||
}
|
||||
|
||||
final _formKey = GlobalKey<FormState>();
|
||||
|
Reference in New Issue
Block a user