SendHumanResetPasswordNotificationRequest constructor

SendHumanResetPasswordNotificationRequest({
  1. String? userId,
  2. SendHumanResetPasswordNotificationRequest_Type? type,
})

Implementation

factory SendHumanResetPasswordNotificationRequest({
  $core.String? userId,
  SendHumanResetPasswordNotificationRequest_Type? type,
}) {
  final _result = create();
  if (userId != null) {
    _result.userId = userId;
  }
  if (type != null) {
    _result.type = type;
  }
  return _result;
}