initialize method
Initialize Dimelo/Engage Digital Messaging SDK on the native side.
This method must be called before using any other functionality.
Parameters:
apiKey- Your Dimelo API key (required)domain- The service domain/endpoint (required)userId- Optional external user ID to bind the sessionapplicationSecret- Optional application secretapiSecret- Optional API secretdevelopmentApns- Whether to use development APNS (iOS only)
Returns true if initialization was successful, false otherwise.
Implementation
Future<bool> initialize({
String? applicationSecret,
String? apiKey,
String? apiSecret,
String? domain,
String? userId,
bool? developmentApns,
}) {
throw UnimplementedError('initialize() has not been implemented.');
}