Skip to content

Instantly share code, notes, and snippets.

@moho12n
Created June 14, 2020 20:31
Show Gist options
  • Save moho12n/c24bede0074e910133a85f40d8ecd8a6 to your computer and use it in GitHub Desktop.
Save moho12n/c24bede0074e910133a85f40d8ecd8a6 to your computer and use it in GitHub Desktop.
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