To persist Google login across sessions in Flutter using InAppWebView, you need to manually manage cookies. Use CookieManager().getCookies() after login to store relevant cookies, then restore them with CookieManager().setCookie() on the next app launch before loading the Google login page. Also, make sure thirdPartyCookiesEnabled is set to true. This helps avoid the dreaded CookieMismatch issue.