UIPage constructor

const UIPage({
  1. Key? key,
  2. required String taskId,
  3. required String rootId,
  4. String? id,
  5. String? token,
  6. int? type,
  7. Map<String, dynamic>? nudgeProps,
  8. required List json,
  9. String? fontFamily,
  10. required String assetUrl,
  11. dynamic callBack(
    1. String?,
    2. String?,
    3. String?
    )?,
  12. required Map<String, dynamic> assets,
  13. double? width,
  14. double? height,
})

Implementation

const UIPage({
  super.key,
  required this.taskId,
  required this.rootId,
  this.id,
  this.token,
  this.type,
  this.nudgeProps,
  required this.json,
  this.fontFamily,
  required this.assetUrl,
  this.callBack,
  required this.assets,
  this.width,
  this.height,
});