fromCode static method

DocumentLanguage fromCode(
  1. String code
)

Implementation

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