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