EDLNFCAccessKey.fromJson constructor
Returns a EDLNFCAccessKey type from a JSON
Implementation
factory EDLNFCAccessKey.fromJson(Map<String, dynamic> data) {
var self = EDLNFCAccessKey._();
self._map["documentType"] = data['documentType'];
self._map["mrz"] =
data['mrz'] ?? {throw ArgumentError('mrz should not be null')};
return self;
}