copyWith method
Implementation
LoginUrlInfoRequestConfirmation copyWith({
String? url,
String? domain,
int? botUserId,
bool? requestWriteAccess,
}) => LoginUrlInfoRequestConfirmation(
url: url ?? this.url,
domain: domain ?? this.domain,
botUserId: botUserId ?? this.botUserId,
requestWriteAccess: requestWriteAccess ?? this.requestWriteAccess,
);