toString method
- @override
Returns a string representation of this object.
Implementation
@override
String toString() {
// TODO: implement toString
return json.encode({
"classifiers": json.decode(this._classifiers.toString()),
"source_url": this.sourceUrl,
"resolved_url": this.resolvedUrl,
"image": this.image
});
}