-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
4b1ec6e
commit 38ec05d
Showing
16 changed files
with
636 additions
and
543 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,42 @@ | ||
class FireStoreConst { | ||
// collection | ||
static const String matchesCollection = "matches"; | ||
static const String teamsCollection = "teams"; | ||
static const String inningsCollection = "innings"; | ||
static const String ballScoresCollection = "ball_scores"; | ||
static const String usersCollection = "users"; | ||
static const String userProfileImagesFolder = "UserProfileImages"; | ||
static const String teamProfileImagesFolder = "TeamProfileImages"; | ||
|
||
// matches field const | ||
static const String id = "id"; | ||
static const String teams = "teams"; | ||
static const String teamId = "team_id"; | ||
static const String run = "run"; | ||
static const String over = "over"; | ||
static const String wicket = "wicket"; | ||
static const String squad = "squad"; | ||
static const String currentPlayingTeamId = "current_playing_team_id"; | ||
static const String matchStatus = "match_status"; | ||
static const String tossWinnerId = "toss_winner_id"; | ||
static const String tossDecision = "toss_decision"; | ||
|
||
// innings field const | ||
static const String matchId = "match_id"; | ||
static const String inningsStatus = "innings_status"; | ||
static const String overs = "overs"; | ||
static const String totalRuns = "total_runs"; | ||
static const String totalWickets = "total_wickets"; | ||
|
||
// ball score field const | ||
static const String inningId = "inning_id"; | ||
static const String bowlerId = "bowler_id"; | ||
static const String batsmanId = "batsman_id"; | ||
static const String wicketTakerId = "wicket_taker_id"; | ||
static const String playerOutId = "player_out_id"; | ||
|
||
// teams field const | ||
static const String players = "players"; | ||
static const String createdBy = "created_by"; | ||
static const String nameLowercase = "name_lowercase"; | ||
} |
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
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.