WebhookEnvelope.fromJson constructor
Implementation
factory WebhookEnvelope.fromJson(Map<String, dynamic> json) => WebhookEnvelope(
id: json['id'] as String,
event: json['event'] as String,
createdOn: json['createdOn'] as String?,
accountId: json['accountId'] as String?,
projectId: json['projectId'] as String?,
triggerId: json['triggerId'] as String?,
data: json['data'],
);