fromString static method

IcsTransp fromString(
  1. String key
)

Implementation

static IcsTransp fromString(String key) {
  final effectiveKey = key.toUpperCase();
  return IcsTransp.values.firstWhere(
    (e) => e.key == effectiveKey,
    orElse: () {
      throw ICalendarTranspParseException('Unknown IcsTransp: $key');
    },
  );
}