copyWith method

MessagePosition copyWith({
  1. int? position,
  2. int? messageId,
  3. int? date,
})

Implementation

MessagePosition copyWith({
  int? position,
  int? messageId,
  int? date,
}) => MessagePosition(
  position: position ?? this.position,
  messageId: messageId ?? this.messageId,
  date: date ?? this.date,
);