toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final name = this.name;
final role = this.role;
final targetAccount = this.targetAccount;
final targetLocation = this.targetLocation;
final targetType = this.targetType;
return {
'name': ?name,
'role': ?role,
'targetAccount': ?targetAccount,
'targetLocation': ?targetLocation,
'targetType': ?targetType,
};
}