DeleteDictionaryParams constructor

DeleteDictionaryParams(
  1. {required SendPort sendPort,
  2. required String directoryPath,
  3. int? dictionaryId}
)

Prepare parameters needed for deleting a dictionary from a separate isolate.

Implementation

DeleteDictionaryParams({
  required super.sendPort,
  required super.directoryPath,
  this.dictionaryId,
});