RootProps constructor

RootProps({
  1. required String? pageId,
  2. String? hasSysClr = "0",
  3. String sysClr = "#FFFFFF",
})

Implementation

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