ComponentSet constructor

ComponentSet({
  1. String? key,
  2. String? fileKey,
  3. String? nodeId,
  4. String? thumbnailUrl,
  5. String? name,
  6. String? description,
  7. DateTime? createdAt,
  8. DateTime? updatedAt,
  9. User? user,
  10. FrameInfo? containingFrame,
  11. dynamic containingPage,
  12. required Map<String, ComponentPropertyDefinition> componentPropertyDefinitions,
})

Implementation

ComponentSet({
  this.key,
  this.fileKey,
  this.nodeId,
  this.thumbnailUrl,
  this.name,
  this.description,
  this.createdAt,
  this.updatedAt,
  this.user,
  this.containingFrame,
  this.containingPage,
  required this.componentPropertyDefinitions,
});