withBirthdate method

AccountBuilder withBirthdate(
  1. DateTime birthdate
)

Implementation

AccountBuilder withBirthdate(DateTime birthdate) {
  _birthdate = birthdate;
  return this;
}