unwrap method

Future<T> unwrap()

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!;