-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
class Event { | ||
Event({ | ||
required this.eventName, | ||
required this.hostName, | ||
required this.url, | ||
required this.startDate, | ||
required this.endDate, | ||
required this.startTime, | ||
required this.endTime, | ||
required this.location, | ||
required this.description, | ||
required this.isFreeDrop, | ||
required this.numberOfTickets, | ||
required this.price, | ||
required this.listOfPerks, | ||
}); | ||
|
||
final String eventName; | ||
|
||
final String hostName; | ||
|
||
final String url; | ||
|
||
final String startDate; | ||
|
||
final String endDate; | ||
|
||
final String startTime; | ||
|
||
final String endTime; | ||
|
||
final String location; | ||
|
||
final String description; | ||
|
||
final String isFreeDrop; | ||
|
||
final String numberOfTickets; | ||
|
||
final String price; | ||
|
||
final List<String> listOfPerks; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters