fromValue static method

YtAlbumType fromValue(
  1. String value
)

Implementation

static YtAlbumType fromValue(String value) {
  return YtAlbumType.values.firstWhere(
    (e) => e.value.toLowerCase() == value.toLowerCase(),
    orElse: () => throw FormatException('Invalid value: $value'),
  );
}