config method

Future<bool> config({
  1. required String key,
  2. required String password,
  3. bool enableDebug = false,
})

Implementation

Future<bool> config({required String key, required String password, bool enableDebug = false}){
  return EdfaPgSdkPlatform.instance.config(key, password, enableDebug);
}