ElementData constructor

ElementData({
  1. required String id,
  2. required String type,
  3. List<ElementData>? children,
  4. List<Skeleton>? skeletons,
  5. required Rect rect,
  6. double opacity = 1.0,
  7. bool isSensitive = false,
  8. bool doNotRecordWireframe = false,
  9. Matrix4? matrix,
  10. int? nativeViewId,
})

Implementation

ElementData({
  required this.id,
  required this.type,
  this.children,
  this.skeletons,
  required this.rect,
  this.opacity = 1.0,
  this.isSensitive = false,
  this.doNotRecordWireframe = false,
  this.matrix,
  this.nativeViewId,
});