fromString static method
Implementation
static CPDFCheckStyle fromString(String typeStr) {
return CPDFCheckStyle.values.firstWhere(
(e) => e.name == typeStr,
orElse: () => throw Exception('Unknown check style type: $typeStr'),
);
}
static CPDFCheckStyle fromString(String typeStr) {
return CPDFCheckStyle.values.firstWhere(
(e) => e.name == typeStr,
orElse: () => throw Exception('Unknown check style type: $typeStr'),
);
}