InngageProps constructor

InngageProps({
  1. required String appToken,
  2. required String firebaseToken,
  3. required String identifier,
  4. String? phoneNumber,
  5. String? email,
  6. Map<String, dynamic>? customFields,
  7. required GlobalKey<NavigatorState> navigatorKey,
  8. required bool requestAdvertiserId,
  9. required bool blockDeepLink,
  10. Function? firebaseListenCallback,
})

Implementation

InngageProps({
  required this.appToken,
  required this.firebaseToken,
  required this.identifier,
  this.phoneNumber,
  this.email,
  this.customFields,
  required this.navigatorKey,
  required this.requestAdvertiserId,
  required this.blockDeepLink,
  this.firebaseListenCallback,
});