factory NLatLng.fromJson(Map<String, dynamic> json) { return NLatLng( json['lat']?.toDouble() ?? 0.0, json['lng']?.toDouble() ?? 0.0, ); }