setConfiguration method

Future<void> setConfiguration(
  1. String baseUrl,
  2. String userId,
  3. String clientId,
  4. String clientSecret,
  5. bool isDebug,
)

This function will show the PFM screen to user. env: development environment "UAT" for development and "PROD" for production. - string NOT NULL

Implementation

Future<void> setConfiguration(String baseUrl, String userId, String clientId,
    String clientSecret, bool isDebug) {
  return Algo360pfmPlatform.instance
      .setConfiguration(baseUrl, userId, clientId, clientSecret, isDebug);
}