copyWith method

BusinessBotManageBar copyWith({
  1. int? botUserId,
  2. String? manageUrl,
  3. bool? isBotPaused,
  4. bool? canBotReply,
})

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