copyWith method

  1. @override
ColeccionObjBox3 copyWith({
  1. int? id,
  2. String? coleccion,
  3. String? idServer,
  4. String? idMobile,
  5. String? data,
  6. String? dataOriginal,
  7. String? estado,
  8. String? creadoEl,
  9. String? idAuth,
  10. String? coleccionAuth,
  11. String? alternativeKey,
  12. String? alternativeKey1,
  13. String? alternativeKey2,
  14. List<double>? alternativeHnswKey,
  15. List<double>? alternativeHnswKey1,
  16. List<double>? alternativeHnswKey2,
  17. 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,
    );