copyWith method
Implementation
DockerSecret copyWith({
String? username,
String? password,
String? registry,
String? email,
}) => DockerSecret(
username: username ?? this.username,
password: password ?? this.password,
registry: registry ?? this.registry,
email: email ?? this.email,
);