toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final canonicalName = this.canonicalName;
final countryCode = this.countryCode;
final id = this.id;
final name = this.name;
final parentGeoTarget = this.parentGeoTarget;
final resourceName = this.resourceName;
final status = this.status;
final targetType = this.targetType;
return {
'canonicalName': ?canonicalName,
'countryCode': ?countryCode,
'id': ?id,
'name': ?name,
'parentGeoTarget': ?parentGeoTarget,
'resourceName': ?resourceName,
'status': ?status,
'targetType': ?targetType,
};
}