V2TimLocationElem.fromJson constructor

V2TimLocationElem.fromJson(
  1. Map json
)

Implementation

V2TimLocationElem.fromJson(Map json) {
  json = Utils.formatJson(json);
  desc = json['desc'];
  longitude = json['longitude'];
  latitude = json['latitude'];
  if (json['nextElem'] != null) {
    nextElem = Utils.formatJson(json['nextElem']);
  }
}