copyWith method
Implementation
CallRectanglesCompanion copyWith(
{Value<String>? chatId, Value<String>? rect, Value<int>? rowid}) {
return CallRectanglesCompanion(
chatId: chatId ?? this.chatId,
rect: rect ?? this.rect,
rowid: rowid ?? this.rowid,
);
}