mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
add toString() to paynym response object
This commit is contained in:
parent
772cca4201
commit
0b30ac435b
1 changed files with 5 additions and 0 deletions
|
@ -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";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue