Data constructor

Data({
  1. String? botId,
  2. String? userId,
  3. OtherInfo? otherInfo,
})

Implementation

Data({
  this.botId,
  this.userId,
  this.otherInfo,
});