IsolateInitializer typedef

IsolateInitializer = Future<List> Function(IsolateInitializeArguments)

Signature for initialization function which would be run in Isolate to initialize your things and provide them to the contexts of workers. Initializer must be a global or static function.

Implementation

typedef IsolateInitializer = Future<List<dynamic>> Function(IsolateInitializeArguments);