copyWithCompanion method

GeoLocationRow copyWithCompanion(
  1. GeoLocationsCompanion data
)

Implementation

GeoLocationRow copyWithCompanion(GeoLocationsCompanion data) {
  return GeoLocationRow(
    ip: data.ip.present ? data.ip.value : this.ip,
    data: data.data.present ? data.data.value : this.data,
    language: data.language.present ? data.language.value : this.language,
    updatedAt: data.updatedAt.present ? data.updatedAt.value : this.updatedAt,
  );
}