MmBot constructor

MmBot({
  1. String? userId,
  2. int? createAt,
  3. int? updateAt,
  4. int? deleteAt,
  5. String? username,
  6. String? displayName,
  7. String? description,
  8. String? ownerId,
})

Returns a new MmBot instance.

Implementation

MmBot({
  this.userId,
  this.createAt,
  this.updateAt,
  this.deleteAt,
  this.username,
  this.displayName,
  this.description,
  this.ownerId,
});