computeMsg method

Future<Uint8List> computeMsg (String msg, String sigSchemaLabel)

Implementation

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