IsolateParams constructor

IsolateParams(
  1. {required SendPort sendPort,
  2. required String directoryPath}
)

Base entity which allows messaging updates from other isolates.

Implementation

IsolateParams({
  required this.sendPort,
  required this.directoryPath,
});