BatchPageData constructor

BatchPageData({
  1. String? userId,
  2. String? anonymousId,
  3. String? messageId,
  4. String? timestamp,
  5. String? name,
  6. Map<String, dynamic>? properties,
})

Creates a new instance of BatchPageData.

Implementation

BatchPageData({
  this.userId,
  this.anonymousId,
  super.messageId,
  super.timestamp,
  super.name,
  super.properties,
});