clientKey property

Future<Uint8List> get clientKey

Implementation

Future<Uint8List> get clientKey {
  final clientKey = _clientKey;
  if (clientKey != null) {
    return Future<Uint8List>.value(Uint8List.fromList(clientKey));
  }
  return _firstClientKeyCompleter.future.then(Uint8List.fromList);
}