AppsModel constructor

AppsModel({
  1. required String? appID,
  2. required String? appName,
  3. required String webUrl,
  4. String? youtube,
  5. required String image,
  6. required String? open,
  7. required int? order,
  8. required Translation? category,
  9. required Translation? description,
  10. required AppMeta ios,
  11. required AppMeta android,
})

Implementation

AppsModel({
  required this.appID,
  required this.appName,
  required this.webUrl,
  this.youtube,
  required this.image,
  required this.open,
  required this.order,
  required this.category,
  required this.description,
  required this.ios,
  required this.android,
});