copyWith method

ReorderBotActiveUsernames copyWith({
  1. int? botUserId,
  2. List<String>? usernames,
})

Implementation

ReorderBotActiveUsernames copyWith({
  int? botUserId,
  List<String>? usernames,
}) =>
    ReorderBotActiveUsernames(
      botUserId: botUserId ?? this.botUserId,
      usernames: usernames ?? this.usernames,
    );