show method

Future<String> show({
  1. String scope = "read",
  2. String? state,
})

Implementation

Future<String> show({String scope = "read", String? state}) async {
  return CasdoorOauth.authenticate(
      url: getSigninUrl(scope: scope, state: state).toString(),
      callbackUrlScheme: config.callbackUrlScheme);
}