Company constructor

Company({
  1. required int id,
  2. String? logoPath,
  3. String? name,
  4. String? originalCountry,
})

Implementation

Company({required this.id, this.logoPath, this.name, this.originalCountry});