copyWithCompanion method

BlocklistRow copyWithCompanion(
  1. BlocklistCompanion data
)

Implementation

BlocklistRow copyWithCompanion(BlocklistCompanion data) {
  return BlocklistRow(
    userId: data.userId.present ? data.userId.value : this.userId,
    reason: data.reason.present ? data.reason.value : this.reason,
    at: data.at.present ? data.at.value : this.at,
    cursor: data.cursor.present ? data.cursor.value : this.cursor,
  );
}