copyWith method
- String? id,
- String? chatId,
- String? authorId,
- PreciseDateTime? at,
- SendingStatus? status,
- String? data,
- Value<
String?> cursor = const Value.absent(), - String? ver,
Implementation
ChatItemRow copyWith(
{String? id,
String? chatId,
String? authorId,
PreciseDateTime? at,
SendingStatus? status,
String? data,
Value<String?> cursor = const Value.absent(),
String? ver}) =>
ChatItemRow(
id: id ?? this.id,
chatId: chatId ?? this.chatId,
authorId: authorId ?? this.authorId,
at: at ?? this.at,
status: status ?? this.status,
data: data ?? this.data,
cursor: cursor.present ? cursor.value : this.cursor,
ver: ver ?? this.ver,
);