toString method

  1. @override
String toString ()

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
  });
}