signInWithGoogle static method

Future<CoreRealmUser?> signInWithGoogle(
  1. String authCode
)

Implementation

static Future<CoreRealmUser?> signInWithGoogle(String authCode) async {
  var details =
      await FlutterMongoStitchPlatform.instance.signInWithGoogle(authCode);
  return CoreRealmUser.fromMap(details);
}