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