fromJSON static method

BarcodeSelectionAimerBehavior fromJSON(
  1. String jsonValue
)

Implementation

static BarcodeSelectionAimerBehavior fromJSON(String jsonValue) {
  return BarcodeSelectionAimerBehavior.values.firstWhere((element) => element.toString() == jsonValue);
}