unwrap method
Waits for this future to complete and returns its JsonRpcResponse.result.
The caller must ensure that JsonRpcResponse.result will not be null.
Implementation
Future<T> unwrap() async => (await this).result!;
Waits for this future to complete and returns its JsonRpcResponse.result.
The caller must ensure that JsonRpcResponse.result will not be null.
Future<T> unwrap() async => (await this).result!;