spawn<T> method

Future<void> spawn<T>(
  1. EntryPoint<T> entryPoint,
  2. T initObject
)

Implementation

Future<void> spawn<T>(EntryPoint<T> entryPoint, T initObject) async {
  throw UnsupportedError('Isolates are not supported on the web platform.');
}