BaseScreenData constructor

BaseScreenData({
  1. String? messageId,
  2. String? timestamp,
  3. AppDataContext? context,
  4. String? name,
  5. Map<String, dynamic>? properties,
})

Creates a new instance of BaseScreenData.

Implementation

BaseScreenData({
  super.messageId,
  super.timestamp,
  this.context,
  this.name,
  this.properties,
});