ScreenViewEventBody constructor

ScreenViewEventBody({
  1. required ScreenEventName eventName,
  2. required String screenName,
  3. required String contentType,
  4. String? referrer,
  5. String? skuId,
  6. String? skuName,
  7. int? navigationStart,
  8. int? loadEventEnd,
  9. bool? forceTrack,
  10. String? sdkVersion,
  11. String? sdkId,
  12. String? attr1,
  13. String? attr2,
  14. String? attr3,
  15. String? attr4,
  16. String? attr5,
})

Implementation

ScreenViewEventBody({
  required this.eventName,
  required this.screenName,
  required this.contentType,
  this.referrer,
  this.skuId,
  this.skuName,
  this.navigationStart,
  this.loadEventEnd,
  this.forceTrack,
  String? sdkVersion,
  String? sdkId,
  String? attr1,
  String? attr2,
  String? attr3,
  String? attr4,
  String? attr5,
}) : super(
        sdkVersion: sdkVersion,
        sdkId: sdkId,
        attr1: attr1,
        attr2: attr2,
        attr3: attr3,
        attr4: attr4,
        attr5: attr5,
      );