BotMetadata constructor

BotMetadata({
  1. DateTime? createdDate,
  2. String? description,
  3. DateTime? lastUpdatedDate,
  4. String? name,
  5. Status? status,
  6. String? version,
})

Implementation

BotMetadata({
  this.createdDate,
  this.description,
  this.lastUpdatedDate,
  this.name,
  this.status,
  this.version,
});