SAAutoTrackPageConfig<T extends Widget> constructor

SAAutoTrackPageConfig<T extends Widget>({
  1. String? title,
  2. String? screenName,
  3. Map<String, dynamic>? properties,
  4. bool ignore = false,
})

Implementation

SAAutoTrackPageConfig({
  String? title,
  String? screenName,
  Map<String, dynamic>? properties,
  bool ignore = false,
})  : ignore = ignore {
  this.title = title;
  this.screenName = screenName;
  this.properties = properties;
}