toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final nextPageToken = this.nextPageToken;
final tasks = this.tasks;
final unreachableLocations = this.unreachableLocations;
return {
'nextPageToken': ?nextPageToken,
'tasks': ?tasks,
'unreachableLocations': ?unreachableLocations,
};
}