initialize static method

Future<void> initialize(
  1. String clientKey,
  2. IDWiseTheme theme, {
  3. required dynamic onError,
  4. dynamic onSuccess,
})

Implementation

static Future<void> initialize(String clientKey, IDWiseTheme theme,
    {required onError, onSuccess}) async {
  IdwiseFlutterPlatform.instance
      .initialize(clientKey, theme, onError: onError);
}