getSeedFromPrivateKey static method Null safety
- Uint8List privateKey
Implementation
static Future<Uint8List> getSeedFromPrivateKey(Uint8List privateKey) async {
try {
return await _methodChannel.invokeMethod('getSeedFromPrivateKey', {
'privateKey': privateKey,
});
} catch (e) {
throw e;
}
}