toJson method
Returns a JSON presentation of the object.
Implementation
@override
Map<String, Object> toJson() {
var result = <String, Object>{};
result['included'] = included;
result['excluded'] = excluded;
var packageRoots = this.packageRoots;
if (packageRoots != null) {
result['packageRoots'] = packageRoots;
}
return result;
}