fromCode static method
Implementation
static DocumentLanguage fromCode(String code) {
return supported.firstWhere(
(l) => l.code == code,
orElse: () => italian,
);
}
static DocumentLanguage fromCode(String code) {
return supported.firstWhere(
(l) => l.code == code,
orElse: () => italian,
);
}