copyWithCompanion method

BackgroundRow copyWithCompanion(
  1. BackgroundCompanion data
)

Implementation

BackgroundRow copyWithCompanion(BackgroundCompanion data) {
  return BackgroundRow(
    userId: data.userId.present ? data.userId.value : this.userId,
    data: data.data.present ? data.data.value : this.data,
  );
}