parse static method
Implementation
static ClipboardListeningWay parse(String value) {
return ClipboardListeningWay.values.firstWhere(
(e) => e.name.toUpperCase() == value.toUpperCase(),
orElse: () {
throw Exception("UnSupport ClipboardListeningWay $value");
},
);
}