toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (failedLocation != null)
'failedLocation':
failedLocation!.map((value) => value.toJson()).toList(),
if (jobs != null) 'jobs': jobs!.map((value) => value.toJson()).toList(),
if (nextPageToken != null) 'nextPageToken': nextPageToken!,
};