copyWith method

InternalLinkTypePassportDataRequest copyWith({
  1. int? botUserId,
  2. String? scope,
  3. String? publicKey,
  4. String? nonce,
  5. String? callbackUrl,
})

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,
);