Language constructor

Language(
  1. String code,
  2. String country
)

Implementation

Language(String code, String country)
    : code = code.toLowerCase(),
      country = country.toUpperCase();