Dashboard constructor

Dashboard({
  1. String? arn,
  2. DateTime? createdTime,
  3. String? dashboardId,
  4. DateTime? lastPublishedTime,
  5. DateTime? lastUpdatedTime,
  6. String? name,
  7. DashboardVersion? version,
})

Implementation

Dashboard({
  this.arn,
  this.createdTime,
  this.dashboardId,
  this.lastPublishedTime,
  this.lastUpdatedTime,
  this.name,
  this.version,
});