runWithPlatformHttp<T> static method

Future<T?> runWithPlatformHttp<T>(
  1. Future<T> call()
)

Backwards-compatible alias for callers that need real async work.

Implementation

static Future<T?> runWithPlatformHttp<T>(Future<T> Function() call) =>
    run(call);