ContainerForRegisteredWebhooks.fromJson constructor
Implementation
factory ContainerForRegisteredWebhooks.fromJson(Map<String, Object?> json) {
return ContainerForRegisteredWebhooks(
webhookRegistrationResult:
(json[r'webhookRegistrationResult'] as List<Object?>?)
?.map((i) => RegisteredWebhook.fromJson(
i as Map<String, Object?>? ?? const {}))
.toList() ??
[],
);
}