Created
June 14, 2020 20:31
-
-
Save moho12n/c24bede0074e910133a85f40d8ecd8a6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class MarkersModel { | |
int id; | |
String name; | |
String description; | |
String latitude; | |
String longitude; | |
String image; | |
MarkersModel( | |
this.id, | |
this.name, | |
this.description, | |
this.latitude, | |
this.longitude, | |
this.image); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment