fromValue static method

AudioProcessingImplementation fromValue(
  1. String? value
)

Implementation

static AudioProcessingImplementation fromValue(String? value) => AudioProcessingImplementation.values.firstWhere(
  (e) => e.value == value,
  orElse: () => AudioProcessingImplementation.unknown,
);