Enter.fromJson constructor

Enter.fromJson(
  1. dynamic json
)

Implementation

Enter.fromJson(dynamic json) {
  latitude = json['latitude'];
  longitude = json['longitude'];
}