toString method
- @override
Returns a string representation of this object.
Implementation
@override
String toString() {
// TODO: implement toString
return json.encode({
"classifier_id": this._classifierId,
"name": this._name,
"classes": json.decode(this._classes.toString())
});
}