initialize static method

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

Implementation

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