DownloadIsolateInstance constructor

DownloadIsolateInstance({
  1. required Isolate isolate,
  2. required ReceivePort receivePort,
  3. SendPort? controlPort,
  4. StreamSubscription? subscription,
})

Constructs a DownloadIsolateInstance with the given isolate, receive port, and optional control port and subscription.

Implementation

DownloadIsolateInstance({
  required this.isolate,
  required this.receivePort,
  this.controlPort,
  this.subscription,
});