RoutineOrder<E extends FormatMedium> constructor
- required String filePath,
- E? inputType,
- required E outputType,
- 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;
}
}