LanguageVo constructor

LanguageVo(
  1. String name,
  2. String languageCode, {
  3. String? countryCode,
  4. bool isSystem = false,
})

Implementation

LanguageVo(this.name, this.languageCode,
    {this.countryCode, this.isSystem = false});