copyWith method
Implementation
ChatMessageReadMarkerViewModel copyWith(
{String? userId, DateTime? createdAt}) {
return ChatMessageReadMarkerViewModel(
userId: userId ?? this.userId, createdAt: createdAt ?? this.createdAt);
}
ChatMessageReadMarkerViewModel copyWith(
{String? userId, DateTime? createdAt}) {
return ChatMessageReadMarkerViewModel(
userId: userId ?? this.userId, createdAt: createdAt ?? this.createdAt);
}