copyWith method
- String? ip,
- String? data,
- Value<
String?> language = const Value.absent(), - PreciseDateTime? updatedAt,
Implementation
GeoLocationRow copyWith(
{String? ip,
String? data,
Value<String?> language = const Value.absent(),
PreciseDateTime? updatedAt}) =>
GeoLocationRow(
ip: ip ?? this.ip,
data: data ?? this.data,
language: language.present ? language.value : this.language,
updatedAt: updatedAt ?? this.updatedAt,
);