setUpEnvironment method

Future<void> setUpEnvironment(
  1. String clientId,
  2. String clientSecret,
  3. String urlScheme,
  4. String state, {
  5. bool isProduction = false,
})

Implementation

Future<void> setUpEnvironment(
  String clientId,
  String clientSecret,
  String urlScheme,
  String state, {
  bool isProduction = false,
}) async {
  UaePassPlatform.instance
      .setUp(clientId, clientSecret, isProduction, urlScheme, state);
}