CreateTokenReq constructor

CreateTokenReq({
  1. String? userID,
  2. int? userType,
})

Implementation

factory CreateTokenReq({
  $core.String? userID,
  $core.int? userType,
}) {
  final result = create();
  if (userID != null) result.userID = userID;
  if (userType != null) result.userType = userType;
  return result;
}