copyWith method

PassportElementPassportRegistration copyWith({
  1. PersonalDocument? passportRegistration,
})

Implementation

PassportElementPassportRegistration copyWith({
  PersonalDocument? passportRegistration,
}) => PassportElementPassportRegistration(
  passportRegistration: passportRegistration ?? this.passportRegistration,
);