UpdateNotificationPolicyResponse constructor

UpdateNotificationPolicyResponse({
  1. ObjectDetails? details,
})

Implementation

factory UpdateNotificationPolicyResponse({
  $7.ObjectDetails? details,
}) {
  final _result = create();
  if (details != null) {
    _result.details = details;
  }
  return _result;
}