copyWith method

SearchCallMessages copyWith({
  1. int? fromMessageId,
  2. int? limit,
  3. bool? onlyMissed,
})

Implementation

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