copyWithWrapped method

Source$Response copyWithWrapped({
  1. Wrapped<String?>? source,
})

Implementation

Source$Response copyWithWrapped({Wrapped<String?>? source}) {
  return Source$Response(
      source: (source != null ? source.value : this.source));
}