Language constructor

Language({
  1. int? id,
  2. String? name,
  3. bool? official,
  4. String? iso639,
  5. String? iso3166,
  6. List<Names>? names,
})

Implementation

Language(
    {this.id,
    this.name,
    this.official,
    this.iso639,
    this.iso3166,
    this.names});