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