fromString static method

CPDFCheckStyle fromString(
  1. String typeStr
)

Implementation

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