copyWith method
InternalLinkTypePassportDataRequest
copyWith({
- int? botUserId,
- String? scope,
- String? publicKey,
- String? nonce,
- String? callbackUrl,
- dynamic extra,
- int? clientId,
override
Implementation
@override
InternalLinkTypePassportDataRequest copyWith({
int? botUserId,
String? scope,
String? publicKey,
String? nonce,
String? callbackUrl,
dynamic extra,
int? clientId,
}) =>
InternalLinkTypePassportDataRequest(
botUserId: botUserId ?? this.botUserId,
scope: scope ?? this.scope,
publicKey: publicKey ?? this.publicKey,
nonce: nonce ?? this.nonce,
callbackUrl: callbackUrl ?? this.callbackUrl,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);