fromJSON static method

BarcodeArCircleHighlightPreset fromJSON(
  1. String jsonValue
)

Implementation

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