withId method

UserBuilder withId(
  1. int? id
)

Implementation

UserBuilder withId(final int? id) {
  _id = id;
  return this;
}