BuildIsolate<T> class

Constructors

BuildIsolate()

Properties

hashCode int
The hash code for this object.
no setterinherited
isInitialized bool
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

dispose({int priority = Isolate.immediate}) → void
Requests the isolate to shut down.
init({required IsolateDataRecived<T> onDataRecived, required IsolateDataRecived<T> onIsolateDataRecived, Object? initialMessage, bool queueMode = false}) Future<SendPort>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
sendMessage(Object? message) → void
Sends an asynchronous message through this send port, to its corresponding ReceivePort.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

single<T>(Object? intialValue, Future<T> test(Object? data)) Future<T>