toEntity static method

Geolocation toEntity(
  1. GeolocationModel model
)

Implementation

static Geolocation toEntity(GeolocationModel model) {
  return Geolocation(lat: model.lat, long: model.long);
}