withGivenName method

AccountBuilder withGivenName(
  1. String givenName
)

Implementation

AccountBuilder withGivenName(String givenName) {
  _givenName = givenName;
  return this;
}