fromJSON static method

BarcodeArInfoAnnotationAnchor fromJSON(
  1. String jsonValue
)

Implementation

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