copyWithWrapped method

BaseObject copyWithWrapped({
  1. Wrapped<String?>? id,
  2. Wrapped<String?>? $id,
  3. Wrapped<int?>? cstamp,
  4. Wrapped<String?>? cby,
  5. Wrapped<String?>? uby,
  6. Wrapped<int?>? ustamp,
})

Implementation

BaseObject copyWithWrapped(
    {Wrapped<String?>? id,
    Wrapped<String?>? $id,
    Wrapped<int?>? cstamp,
    Wrapped<String?>? cby,
    Wrapped<String?>? uby,
    Wrapped<int?>? ustamp}) {
  return BaseObject(
      id: (id != null ? id.value : this.id),
      $id: ($id != null ? $id.value : this.$id),
      cstamp: (cstamp != null ? cstamp.value : this.cstamp),
      cby: (cby != null ? cby.value : this.cby),
      uby: (uby != null ? uby.value : this.uby),
      ustamp: (ustamp != null ? ustamp.value : this.ustamp));
}