Bot constructor

Bot({
  1. String? botEmail,
  2. String? botId,
  3. BotType? botType,
  4. DateTime? createdTimestamp,
  5. bool? disabled,
  6. String? displayName,
  7. String? securityToken,
  8. DateTime? updatedTimestamp,
  9. String? userId,
})

Implementation

Bot({
  this.botEmail,
  this.botId,
  this.botType,
  this.createdTimestamp,
  this.disabled,
  this.displayName,
  this.securityToken,
  this.updatedTimestamp,
  this.userId,
});