copyWithCompanion method

MonologRow copyWithCompanion(
  1. MonologsCompanion data
)

Implementation

MonologRow copyWithCompanion(MonologsCompanion data) {
  return MonologRow(
    userId: data.userId.present ? data.userId.value : this.userId,
    chatId: data.chatId.present ? data.chatId.value : this.chatId,
  );
}