RootProps constructor

RootProps({
  1. required String? pageId,
  2. String? hasSysClr = "0",
  3. String sysClr = "#FFFFFF",
  4. int? x,
  5. int? y,
  6. int? constHeight,
  7. int? constWidth,
  8. String? asset,
  9. String? objectFit,
})

Implementation

RootProps({
  required this.pageId,
  this.hasSysClr = "0", // Optional field with default value
  this.sysClr = "#FFFFFF", // Optional field with default value
  this.x,
  this.y,
  this.constHeight,
  this.constWidth,
  this.asset,
  this.objectFit,
});