-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #106 from covid19cuba/develop
Release 0.4.0
- Loading branch information
Showing
79 changed files
with
1,592 additions
and
1,477 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
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
export 'cuba_data_provider.dart'; | ||
export 'countries_data_provider.dart'; | ||
export 'info_update_provider.dart'; | ||
export 'news_provider.dart'; | ||
export 'notifications_data_provider.dart'; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import 'package:json_annotation/json_annotation.dart'; | ||
|
||
import 'package:covid19cuba/src/models/models.dart'; | ||
|
||
part 'cases_by_mode_of_contagion.g.dart'; | ||
|
||
@JsonSerializable() | ||
class CasesByModeOfContagion { | ||
Item imported; | ||
Item inserted; | ||
Item autochthonous; | ||
Item unknown; | ||
|
||
CasesByModeOfContagion(); | ||
|
||
factory CasesByModeOfContagion.fromJson(Map<String, dynamic> json) => | ||
_$CasesByModeOfContagionFromJson(json); | ||
|
||
Map<String, dynamic> toJson() => _$CasesByModeOfContagionToJson(this); | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,19 @@ | ||
import 'package:json_annotation/json_annotation.dart'; | ||
|
||
import 'package:covid19cuba/src/models/models.dart'; | ||
|
||
part 'cases_by_nationality.g.dart'; | ||
|
||
@JsonSerializable() | ||
class CasesByNationality { | ||
Item foreign; | ||
Item cubans; | ||
Item unknown; | ||
|
||
CasesByNationality(); | ||
|
||
factory CasesByNationality.fromJson(Map<String, dynamic> json) => | ||
_$CasesByNationalityFromJson(json); | ||
|
||
Map<String, dynamic> toJson() => _$CasesByNationalityToJson(this); | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,19 @@ | ||
import 'package:json_annotation/json_annotation.dart'; | ||
|
||
import 'package:covid19cuba/src/models/models.dart'; | ||
|
||
part 'cases_by_sex.g.dart'; | ||
|
||
@JsonSerializable() | ||
class CasesBySex { | ||
Item men; | ||
Item women; | ||
Item unknown; | ||
|
||
CasesBySex(); | ||
|
||
factory CasesBySex.fromJson(Map<String, dynamic> json) => | ||
_$CasesBySexFromJson(json); | ||
|
||
Map<String, dynamic> toJson() => _$CasesBySexToJson(this); | ||
} |
Oops, something went wrong.