loginViaGoogle abstract method

Future<RequestResponse<K>> loginViaGoogle({
  1. required String code,
  2. String? state,
})

Logins in using Google Auth code.

Optionally pass the state which is usually a JWT or base64 encoded data.

Implementation

Future<RequestResponse<K>> loginViaGoogle({
  required String code,
  String? state,
});