initialize method
void
initialize(
- String clientKey,
- IDWiseTheme theme, {
- required dynamic onError(
- String error
override
Implementation
@override
void initialize(String clientKey, IDWiseTheme theme,
{required onError}) async {
_onInitializeErrorCallback = onError;
methodChannel.invokeMethod(
'initialize', {"clientKey": clientKey, "theme": theme.name});
}