SubresourceWebBundleMetadataErrorEvent.fromJson constructor
Implementation
factory SubresourceWebBundleMetadataErrorEvent.fromJson(
Map<String, dynamic> json) {
return SubresourceWebBundleMetadataErrorEvent(
requestId: RequestId.fromJson(json['requestId'] as String),
errorMessage: json['errorMessage'] as String,
);
}