toJson method
Returns a JSON presentation of the object.
Implementation
@override
Map<String, Object> toJson() {
var result = <String, Object>{};
result['name'] = name;
result['explicitFileCount'] = explicitFileCount;
result['implicitFileCount'] = implicitFileCount;
result['workItemQueueLength'] = workItemQueueLength;
result['cacheEntryExceptions'] = cacheEntryExceptions;
return result;
}