copyWith method
Implementation
SearchCallMessages copyWith({
int? fromMessageId,
int? limit,
bool? onlyMissed,
}) => SearchCallMessages(
fromMessageId: fromMessageId ?? this.fromMessageId,
limit: limit ?? this.limit,
onlyMissed: onlyMissed ?? this.onlyMissed,
);