copyWithCompanion method

CallRectangleRow copyWithCompanion(
  1. CallRectanglesCompanion data
)

Implementation

CallRectangleRow copyWithCompanion(CallRectanglesCompanion data) {
  return CallRectangleRow(
    chatId: data.chatId.present ? data.chatId.value : this.chatId,
    rect: data.rect.present ? data.rect.value : this.rect,
  );
}