PortalApplication constructor

const PortalApplication({
  1. required int id,
  2. required int category,
  3. required String code,
  4. required String nameZh,
  5. String? nameEn,
  6. String? iconUrl,
  7. required int position,
})

Implementation

const PortalApplication({
  required this.id,
  required this.category,
  required this.code,
  required this.nameZh,
  this.nameEn,
  this.iconUrl,
  required this.position,
});