RateMyApp constructor

RateMyApp({
  1. String preferencesPrefix = 'rateMyApp_',
  2. int? minDays,
  3. int? remindDays,
  4. int? minLaunches,
  5. int? remindLaunches,
  6. String? googlePlayIdentifier,
  7. String? appStoreIdentifier,
})

Creates a new Rate my app instance.

Implementation

RateMyApp({
  this.preferencesPrefix = 'rateMyApp_',
  int? minDays,
  int? remindDays,
  int? minLaunches,
  int? remindLaunches,
  this.googlePlayIdentifier,
  this.appStoreIdentifier,
}) : conditions = [] {
  populateWithDefaultConditions(
    minDays: minDays,
    remindDays: remindDays,
    minLaunches: minLaunches,
    remindLaunches: remindLaunches,
  );
}