PublishedFlow constructor

PublishedFlow({
  1. String? id,
  2. String? workspaceID,
  3. String? name,
  4. String? userID,
  5. String? flowID,
  6. String? versionID,
  7. Map? labels,
  8. List<VersionElement>? versions,
  9. DateTime? createdAt,
  10. DateTime? updatedAt,
})

Implementation

PublishedFlow({
  this.id,
  this.workspaceID,
  this.name,
  this.userID,
  this.flowID,
  this.versionID,
  this.labels,
  this.versions,
  this.createdAt,
  this.updatedAt,
});