VerIDError.fromJson constructor

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

Factory method to create from JSON string

Implementation

VerIDError.fromJson(Map<String, dynamic> json) {
  this.domain = json["domain"];
  this.code = json["code"];
  this.description = json["description"];
}