copyWith method
Implementation
ApplicationGetRequest copyWith(
{String? clientId, String? secret, String? applicationId}) {
return ApplicationGetRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
applicationId: applicationId ?? this.applicationId);
}