copyWith method
Implementation
BusinessBotManageBar copyWith({
int? botUserId,
String? manageUrl,
bool? isBotPaused,
bool? canBotReply,
}) => BusinessBotManageBar(
botUserId: botUserId ?? this.botUserId,
manageUrl: manageUrl ?? this.manageUrl,
isBotPaused: isBotPaused ?? this.isBotPaused,
canBotReply: canBotReply ?? this.canBotReply,
);