Mark constructor

const Mark({
  1. Key? key,
  2. bool enable = true,
  3. required Object name,
  4. bool repaintBoundary = false,
  5. Object? data,
  6. required Widget child,
})

Implementation

const Mark({
  super.key,
  this.enable = true,
  required this.name,
  this.repaintBoundary = false,
  this.data,
  required this.child,
});