copyWith method
ColeccionObjBox3
copyWith({
- int? id,
- String? coleccion,
- String? idServer,
- String? idMobile,
- String? data,
- String? dataOriginal,
- String? estado,
- String? creadoEl,
- String? idAuth,
- String? coleccionAuth,
- String? alternativeKey,
- String? alternativeKey1,
- String? alternativeKey2,
- List<
double> ? alternativeHnswKey, - List<
double> ? alternativeHnswKey1, - List<
double> ? alternativeHnswKey2, - String? eTransfer,
override
Implementation
@override
ColeccionObjBox3 copyWith(
{int? id,
String? coleccion,
String? idServer,
String? idMobile,
String? data,
String? dataOriginal,
String? estado,
String? creadoEl,
String? idAuth,
String? coleccionAuth,
String? alternativeKey,
String? alternativeKey1,
String? alternativeKey2,
List<double>? alternativeHnswKey,
List<double>? alternativeHnswKey1,
List<double>? alternativeHnswKey2,
String? eTransfer}) =>
ColeccionObjBox3(
id: id ?? this.id,
coleccion: coleccion ?? this.coleccion,
idServer: idServer ?? this.idServer,
idMobile: idMobile ?? this.idMobile,
data: data ?? this.data,
dataOriginal: dataOriginal ?? this.dataOriginal,
estado: estado ?? this.estado,
creadoEl: creadoEl ?? this.creadoEl,
idAuth: idAuth ?? this.idAuth,
coleccionAuth: coleccionAuth ?? this.coleccionAuth,
alternativeKey: alternativeKey ?? this.alternativeKey,
alternativeKey1: alternativeKey1 ?? this.alternativeKey1,
alternativeKey2: alternativeKey2 ?? this.alternativeKey2,
alternativeHnswKey: alternativeHnswKey ?? this.alternativeHnswKey,
alternativeHnswKey1: alternativeHnswKey1 ?? this.alternativeHnswKey1,
alternativeHnswKey2: alternativeHnswKey2 ?? this.alternativeHnswKey2,
eTransfer: eTransfer ?? this.eTransfer,
);