ContainerForWebhookIDs.fromJson constructor
Implementation
factory ContainerForWebhookIDs.fromJson(Map<String, Object?> json) {
return ContainerForWebhookIDs(
webhookIds: (json[r'webhookIds'] as List<Object?>?)
?.map((i) => (i as num?)?.toInt() ?? 0)
.toList() ??
[],
);
}