CertificateErrorEvent.fromJson constructor

CertificateErrorEvent.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CertificateErrorEvent.fromJson(Map<String, dynamic> json) {
  return CertificateErrorEvent(
    eventId: json['eventId'] as int,
    errorType: json['errorType'] as String,
    requestURL: json['requestURL'] as String,
  );
}