run<T> static method

Future<T> run<T>(
  1. AsyncTask<T> task
)

Implementation

static Future<T> run<T>(AsyncTask<T> task) async{
  return task();
}