mergeTvc function
Merge code and data to tvc base64 string and return (tvc, hash) or throw error
Implementation
(String, String) mergeTvc({
required String code,
required String data,
}) {
final res = ntMergeTvc(code: code, data: data);
return (res[0], res[1]);
}