toString method

  1. @override
String toString ()

Returns a string representation of this object.

Implementation

@override
String toString() {
  // TODO: implement toString
  return json.encode({
    "images": json.decode(this._images.toString()),
    "images_processed": this.imagesProcessed,
    "custom_classes": this.customClasses
  });
}