fromValue static method

COSESigContext fromValue(
  1. String? name
)

Implementation

static COSESigContext fromValue(String? name) {
  return values.firstWhere(
    (e) => e.value == name,
    orElse:
        () => throw ADAPluginException('Invalid COSESigContext "$name". '),
  );
}