import 'package:ferry/ferry.dart'; abstract class GraphQLRunner { /// Initializes the runner. /// /// Call this method before calling any other method. Calling the method /// multiple times has no effect. Future spawn(); Stream> request( OperationRequest request, ); Future setAuthToken(String token); Future isLoggedIn(); /// Deletes all data on the GraphQL database. Future clear(); }