startOAuth method
Implementation
@override
Future<void> startOAuth({
required String provider,
required String table,
String? redirectTo,
String? authorization,
}) async {
await _client.request(
method: 'GET',
path: '/auth/oauth/start/${provider}',
headers: {'authorization': authorization},
query: {'table': table, 'redirect_to': redirectTo},
);
}