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