fromJSON static method

BarcodeArAnnotationTrigger fromJSON(
  1. String jsonValue
)

Implementation

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