copyWith method
Implementation
ConnectedApplication copyWith(
{String? applicationId,
String? name,
String? displayName,
String? logoUrl,
String? applicationUrl,
String? reasonForAccess,
DateTime? createdAt,
ScopesNullable? scopes}) {
return ConnectedApplication(
applicationId: applicationId ?? this.applicationId,
name: name ?? this.name,
displayName: displayName ?? this.displayName,
logoUrl: logoUrl ?? this.logoUrl,
applicationUrl: applicationUrl ?? this.applicationUrl,
reasonForAccess: reasonForAccess ?? this.reasonForAccess,
createdAt: createdAt ?? this.createdAt,
scopes: scopes ?? this.scopes);
}