copyWith method

ToggleBotUsernameIsActive copyWith({
  1. int? botUserId,
  2. String? username,
  3. bool? isActive,
})

Implementation

ToggleBotUsernameIsActive copyWith({
  int? botUserId,
  String? username,
  bool? isActive,
}) => ToggleBotUsernameIsActive(
  botUserId: botUserId ?? this.botUserId,
  username: username ?? this.username,
  isActive: isActive ?? this.isActive,
);