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