copyWith method

InstallerIdDTO copyWith({
  1. String? apiKey,
})

Implementation

InstallerIdDTO copyWith({String? apiKey}) {
  return InstallerIdDTO(apiKey: apiKey ?? this.apiKey);
}