copyWith method
- String? userId,
- String? chatId,
- PreciseDateTime? joinedAt,
- Value<
String?> cursor = const Value.absent(),
Implementation
ChatMemberRow copyWith(
{String? userId,
String? chatId,
PreciseDateTime? joinedAt,
Value<String?> cursor = const Value.absent()}) =>
ChatMemberRow(
userId: userId ?? this.userId,
chatId: chatId ?? this.chatId,
joinedAt: joinedAt ?? this.joinedAt,
cursor: cursor.present ? cursor.value : this.cursor,
);