Application constructor
Application({
- required String applicationId,
- required String name,
- required String? displayName,
- required DateTime joinDate,
- required String? logoUrl,
- required String? applicationUrl,
- required String? reasonForAccess,
- required String? useCase,
- required String? companyLegalName,
- required String? city,
- required String? region,
- required String? postalCode,
- 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,
});