add toString() to paynym response object

This commit is contained in:
julian 2023-01-04 08:34:18 -06:00
parent 772cca4201
commit 0b30ac435b

View file

@ -4,4 +4,9 @@ class PaynymResponse<T> {
final String message;
PaynymResponse(this.value, this.statusCode, this.message);
@override
String toString() {
return "PaynymResponse: value=$value, statusCode=$statusCode, message=$message";
}
}