processorForOperation method
Returns the processor descriptor registered for operation, if any.
Implementation
PixaProcessorDescriptor? processorForOperation(String operation) {
final String? ownerId =
_processorOperations[operation.trim().toLowerCase()];
return ownerId == null ? null : _processors[ownerId];
}