awaitFarcasterResponse method

  1. @override
Future<bool> awaitFarcasterResponse()
override

Implementation

@override
Future<bool> awaitFarcasterResponse() async {
  if (_serviceNotReady) {
    throw Exception('Service is not ready');
  }
  //
  _connectFarcaster = Completer<bool>();
  return await _connectFarcaster.future;
}