fromValue static method
Implementation
static MoneroLanguages fromValue(String? value) {
return values.firstWhere((e) => e.name == value,
orElse: () => throw ExceptionConst.itemNotFound(
item: "Monero ${value ?? ''} language"));
}
static MoneroLanguages fromValue(String? value) {
return values.firstWhere((e) => e.name == value,
orElse: () => throw ExceptionConst.itemNotFound(
item: "Monero ${value ?? ''} language"));
}