copyWith method
Implementation
InternalLinkTypePassportDataRequest copyWith({
int? botUserId,
String? scope,
String? publicKey,
String? nonce,
String? callbackUrl,
}) => InternalLinkTypePassportDataRequest(
botUserId: botUserId ?? this.botUserId,
scope: scope ?? this.scope,
publicKey: publicKey ?? this.publicKey,
nonce: nonce ?? this.nonce,
callbackUrl: callbackUrl ?? this.callbackUrl,
);