14 lines
234 B
Dart
Raw Normal View History

2024-06-24 23:57:43 +02:00
class Events {
String? id;
String? name;
String? place;
Events({this.place, this.id, this.name});
Events.fromJson(Map<String, dynamic> json) {
id = json['id'];
name = json['name'];
place = json['place'];
}
}