copyWith method

SetBirthdate copyWith({
  1. Birthdate? birthdate,
})

Implementation

SetBirthdate copyWith({Birthdate? birthdate}) =>
    SetBirthdate(birthdate: birthdate ?? this.birthdate);