runCompute<Q, R> static method

Future<R> runCompute<Q, R>(
  1. ComputeCallback<Q, R> callback,
  2. Q message, {
  3. String? debugLabel,
})

Implementation

static Future<R> runCompute<Q, R>(
  fd.ComputeCallback<Q, R> callback,
  Q message, {
  String? debugLabel,
}) {
  return fd.compute(callback, message, debugLabel: debugLabel);
}