byteToHex static method

Future<String?> byteToHex(
  1. Uint8List byteData
)

Implementation

static Future<String?> byteToHex(Uint8List byteData) async {
  String? result = await methodChannel.invokeMethod<String>('byteToHex', {"byteArray": byteData});
  return result;
}