class GoogleOAuth { static bool get isEnabled => false; static Future signIn(Function(String, String) callback, {bool isSilent = false}) async { return false; } static Future signUp(Function(String, String) callback) async { return false; } static Future requestGmailScope() async { return false; } /* static Future grantOfflineAccess(Function(String, String, String) successCallback, Function errorCallback) async { // } */ static Future signOut() async { // } static Future disconnect() async { // } }