copyWith method
Implementation
SetBotUpdatesStatus copyWith({
int? pendingUpdateCount,
String? errorMessage,
}) =>
SetBotUpdatesStatus(
pendingUpdateCount: pendingUpdateCount ?? this.pendingUpdateCount,
errorMessage: errorMessage ?? this.errorMessage,
);