RoutineOrder<E extends FormatMedium> constructor

RoutineOrder<E extends FormatMedium>({
  1. required String filePath,
  2. E? inputType,
  3. required E outputType,
  4. required OutputPathHandler outputPathHandler,
})

Implementation

RoutineOrder({
  required this.filePath,
  E? inputType,
  required this.outputType,
  required this.outputPathHandler,
}) {
  identifier =
      Object.hash(filePath, outputType, outputPathHandler).toString();
  if (inputType == null) {
  } else {
    this.inputType = inputType;
  }
}