computeMsg method
Implementation
static Future<Uint8List> computeMsg(String msg, String sigSchemaLabel) async {
var bytes = Uint8List.fromList(Utf8Encoder().convert(msg));
return computeBytes(bytes, sigSchemaLabel);
}
static Future<Uint8List> computeMsg(String msg, String sigSchemaLabel) async {
var bytes = Uint8List.fromList(Utf8Encoder().convert(msg));
return computeBytes(bytes, sigSchemaLabel);
}