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