VeriffResponse.fromJson constructor
Returns a VeriffResponse type from a JSON
Implementation
factory VeriffResponse.fromJson(Map<String, dynamic> data) {
var self = VeriffResponse._();
self._map["status"] = data['status'];
self._map["code"] = data['code'];
self._map["message"] = data['message'];
self._map["verification"] = data['verification'] == null
? null
: Map<String, dynamic>.from(data['verification']);
return self;
}