getKey method

Future<Uint8List> getKey()

Implementation

Future<Uint8List> getKey() async {
  if (_cachedKey == null) {
    await initialize();
  }
  return _cachedKey!;
}