Application constructor

Application({
  1. required String applicationId,
  2. required String name,
  3. required String? displayName,
  4. required DateTime joinDate,
  5. required String? logoUrl,
  6. required String? applicationUrl,
  7. required String? reasonForAccess,
  8. required String? useCase,
  9. required String? companyLegalName,
  10. required String? city,
  11. required String? region,
  12. required String? postalCode,
  13. required String? countryCode,
})

Implementation

Application({
  required this.applicationId,
  required this.name,
  required this.displayName,
  required this.joinDate,
  required this.logoUrl,
  required this.applicationUrl,
  required this.reasonForAccess,
  required this.useCase,
  required this.companyLegalName,
  required this.city,
  required this.region,
  required this.postalCode,
  required this.countryCode,
});