processorForOperation method

PixaProcessorDescriptor? processorForOperation(
  1. String operation
)

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];
}