enableInAppMessaging method

InTrackConfig enableInAppMessaging({
  1. Map<String, String> defaultTheme = const {'titleColor' : '#000000', 'descriptionColor' : '#000000', 'bgColor' : '#ffffff', 'actionLabelColor' : '#000000', 'actionBgColor' : '#ffffff', 'font' : ' iranyekanregular'},
})

enabling inApp messaging

Implementation

InTrackConfig enableInAppMessaging(
    {Map<String, String> defaultTheme = const {
      'titleColor': '#000000',
      'descriptionColor': '#000000',
      'bgColor': '#ffffff',
      'actionLabelColor': '#000000',
      'actionBgColor': '#ffffff',
      'font':' iranyekanregular'
    }}) {
  _inAppMessaging = true;
  _inAppAutoTracking = false;
  _inAppDefaultTheme = defaultTheme;
  return this;
}