CustomViewBlock constructor

const CustomViewBlock({
  1. required int viewId,
  2. required double offsetX,
  3. required double offsetY,
  4. required double width,
  5. required double height,
  6. required bool enableTap,
  7. String? text,
  8. String? textColor,
  9. double? textSize,
  10. String? backgroundColor,
  11. String? image,
})

Implementation

const CustomViewBlock({
  required this.viewId,
  required this.offsetX,
  required this.offsetY,
  required this.width,
  required this.height,
  required this.enableTap,
  this.text,
  this.textColor,
  this.textSize,
  this.backgroundColor,
  this.image,
});