initial static method

UserState initial()

Implementation

static UserState initial() {
  return new UserState(
    (b) => b
      ..token = ""
      ..opaReady = false
      ..users = ListBuilder<User>()
      ..checkingOpa = false,
  );
}