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