UpdateCustomNotificationPolicyRequest constructor

UpdateCustomNotificationPolicyRequest({
  1. bool? passwordChange,
})

Implementation

factory UpdateCustomNotificationPolicyRequest({
  $core.bool? passwordChange,
}) {
  final _result = create();
  if (passwordChange != null) {
    _result.passwordChange = passwordChange;
  }
  return _result;
}