extractBytes method

Future<List<int>> extractBytes()

Returns bytes of the secret key.

Throws UnsupportedError if extraction is not possible.

Implementation

Future<List<int>> extractBytes() => extract().then((value) => value.bytes);