splitTvc function
Split base64 tvc string into data and code. Return (data, code) or throw error
Implementation
Future<(String?, String?)> splitTvc(String tvc) async {
final res = await createLib().splitTvc(tvc: tvc);
return (res[0], res[1]);
}