copyWithWrapped method

PreferPrimary$Response copyWithWrapped({
  1. Wrapped<Object?>? preferPrimary,
})

Implementation

PreferPrimary$Response copyWithWrapped({Wrapped<Object?>? preferPrimary}) {
  return PreferPrimary$Response(
      preferPrimary:
          (preferPrimary != null ? preferPrimary.value : this.preferPrimary));
}