PasskitNfc.fromJson constructor
Implementation
factory PasskitNfc.fromJson(Map<String, dynamic> json) {
return PasskitNfc(
encryptionPublicKey: json['encryptionPublicKey'],
message: json['message'],
requiresAuthentication: json['requiresAuthentication'] as bool?,
);
}