WebHookId constructor

WebHookId({
  1. String? id,
  2. String? eventType,
})

Implementation

factory WebHookId({
  $core.String? id,
  $core.String? eventType,
}) {
  final result = create();
  if (id != null) result.id = id;
  if (eventType != null) result.eventType = eventType;
  return result;
}