Canvas constructor

Canvas({
  1. required String id,
  2. required bool visible,
  3. Map<String, String>? componentPropertyReferences,
  4. String? name,
  5. double? rotation,
  6. dynamic pluginData,
  7. dynamic sharedPluginData,
  8. String? type,
  9. required PrototypeDevice prototypeDevice,
  10. required List<FlowStartingPoint> flowStartingPoints,
  11. required List<ExportSetting> exportSettings,
  12. List<Node?>? children,
  13. Color? backgroundColor,
})

Implementation

Canvas({
  required super.id,
  required super.visible,
  super.componentPropertyReferences,
  super.name,
  super.rotation,
  super.pluginData,
  super.sharedPluginData,
  super.type,
  required this.prototypeDevice,
  required this.flowStartingPoints,
  required this.exportSettings,
  this.children,
  this.backgroundColor,
});