VerifyTokenReply constructor

VerifyTokenReply({
  1. String? userId,
  2. Int64? exp,
  3. Int64? iat,
  4. UserType? type,
})

Implementation

factory VerifyTokenReply({
  $core.String? userId,
  $fixnum.Int64? exp,
  $fixnum.Int64? iat,
  UserType? type,
}) {
  final $result = create();
  if (userId != null) {
    $result.userId = userId;
  }
  if (exp != null) {
    $result.exp = exp;
  }
  if (iat != null) {
    $result.iat = iat;
  }
  if (type != null) {
    $result.type = type;
  }
  return $result;
}