copyWithWrapped method

InstallerIdDTO copyWithWrapped({
  1. Wrapped<String?>? apiKey,
})

Implementation

InstallerIdDTO copyWithWrapped({Wrapped<String?>? apiKey}) {
  return InstallerIdDTO(
      apiKey: (apiKey != null ? apiKey.value : this.apiKey));
}