copyWith method
Application
copyWith(
{ - String? applicationId,
- String? name,
- String? displayName,
- DateTime? joinDate,
- String? logoUrl,
- String? applicationUrl,
- String? reasonForAccess,
- String? useCase,
- String? companyLegalName,
- String? city,
- String? region,
- String? postalCode,
- String? countryCode,
})
Implementation
Application copyWith(
{String? applicationId,
String? name,
String? displayName,
DateTime? joinDate,
String? logoUrl,
String? applicationUrl,
String? reasonForAccess,
String? useCase,
String? companyLegalName,
String? city,
String? region,
String? postalCode,
String? countryCode}) {
return Application(
applicationId: applicationId ?? this.applicationId,
name: name ?? this.name,
displayName: displayName ?? this.displayName,
joinDate: joinDate ?? this.joinDate,
logoUrl: logoUrl ?? this.logoUrl,
applicationUrl: applicationUrl ?? this.applicationUrl,
reasonForAccess: reasonForAccess ?? this.reasonForAccess,
useCase: useCase ?? this.useCase,
companyLegalName: companyLegalName ?? this.companyLegalName,
city: city ?? this.city,
region: region ?? this.region,
postalCode: postalCode ?? this.postalCode,
countryCode: countryCode ?? this.countryCode);
}