fromMap static method
Creates the user from a map
Implementation
static GeoffUser fromMap(Map<String, dynamic> map) {
GeoffUser user = GeoffUser();
user..setId(ModelUtils.getField<String>(map, "id"))
..setUsername(ModelUtils.getField<String>(map, "username"));
return user;
}