copyWith method

SetManagedBotAccessSettings copyWith({
  1. int? botUserId,
  2. BotAccessSettings? settings,
})

Implementation

SetManagedBotAccessSettings copyWith({
  int? botUserId,
  BotAccessSettings? settings,
}) => SetManagedBotAccessSettings(
  botUserId: botUserId ?? this.botUserId,
  settings: settings ?? this.settings,
);