GeoSpatialColumnGroup.fromJson constructor
Implementation
factory GeoSpatialColumnGroup.fromJson(Map<String, dynamic> json) {
return GeoSpatialColumnGroup(
columns: (json['Columns'] as List)
.whereNotNull()
.map((e) => e as String)
.toList(),
countryCode: (json['CountryCode'] as String).toGeoSpatialCountryCode(),
name: json['Name'] as String,
);
}