toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final pageSize = this.pageSize;
final pageToken = this.pageToken;
final source = this.source;
final sources = this.sources;
final target = this.target;
final targets = this.targets;
return {
'pageSize': ?pageSize,
'pageToken': ?pageToken,
'source': ?source,
'sources': ?sources,
'target': ?target,
'targets': ?targets,
};
}