14 lines
234 B
Dart
14 lines
234 B
Dart
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'];
|
|
}
|
|
}
|