Language constructor

const Language({
  1. required String name,
  2. required String code,
  3. required int translations,
  4. required double percentage,
  5. required String updated,
})

Implementation

const Language({
  required this.name,
  required this.code,
  required this.translations,
  required this.percentage,
  required this.updated,
});