fromMap static method
Implementation
static CastMediaPlayerState fromMap(String value) {
return CastMediaPlayerState.values.firstWhere(
(element) => element.name.toUpperCase() == value.toUpperCase(),
orElse: () => CastMediaPlayerState.idle,
);
}