PortalApplicationCategory constructor

const PortalApplicationCategory({
  1. required int id,
  2. required int user,
  3. required String distinguishedName,
  4. required String nameZh,
  5. String? nameEn,
  6. required int position,
})

Implementation

const PortalApplicationCategory({
  required this.id,
  required this.user,
  required this.distinguishedName,
  required this.nameZh,
  this.nameEn,
  required this.position,
});