Implementation
Map<String, dynamic> get toMap {
Map<String, dynamic> configMap = {
'appToken': appToken,
'environment': envirnoment,
'secretId': secretId,
'secretKey': secretKey,
'deeplinkCallback': _deferredDeeplinkCallbackName,
'setManualMode': manualMode,
'disableOrganicTracking': disableOrganic,
'attributionParams': attributionParams,
'setAndroidId' : androidId,
'setFacebookAppId' : facebookId,
'setAppId': appId,
'setEncryptionType': encryptionType.name,
'setEncryptionKey': encryptionKey,
'region': region.name.toLowerCase()
};
return configMap;
}