Meta.fromJson constructor

Meta.fromJson(
  1. Map<String, dynamic> json
)

Implementation

Meta.fromJson(Map<String, dynamic> json) {
  addressId = json['addressId'];
  addressDescription = json['addressDescription'];
  latitude = json['latitude'];
  longitude = json['longitude'];
}