Slice constructor

Slice({
  1. required String id,
  2. required bool visible,
  3. Map<String, String>? componentPropertyReferences,
  4. double? rotation,
  5. String? name,
  6. String? type,
  7. dynamic pluginData,
  8. dynamic sharedPluginData,
  9. List<ExportSetting>? exportSettings,
  10. SizeRectangle? absoluteBoundingBox,
  11. SizeRectangle? absoluteRenderBounds,
  12. Vector2D? size,
  13. List<List<num>>? relativeTransform,
})

Implementation

Slice({
  required super.id,
  required super.visible,
  super.componentPropertyReferences,
  super.rotation,
  super.name,
  super.type,
  super.pluginData,
  super.sharedPluginData,
  this.exportSettings,
  this.absoluteBoundingBox,
  this.absoluteRenderBounds,
  this.size,
  this.relativeTransform,
});