TeamsProjectView constructor

TeamsProjectView({
  1. Key? key,
  2. String? projectName,
  3. String? hourSpend,
  4. dynamic onEdit()?,
  5. String? taskName,
  6. String? taskReport,
  7. bool? isEdit = false,
  8. EdgeInsets? margin = EdgeInsets.zero,
  9. dynamic onScreenVerify()?,
  10. QuillController? controller,
  11. int? viewType = 0,
  12. Widget? subChild,
  13. bool showEdit = false,
  14. bool? isScreenVerified = false,
})

Implementation

TeamsProjectView({Key? key,
  this.projectName,
  this.hourSpend,
  this.onEdit,
  this.taskName,
  this.taskReport,
  this.isEdit = false,
  this.margin = EdgeInsets.zero,
  this.onScreenVerify,
  this.controller,
  this.viewType = 0,
  this.subChild,
  this.showEdit = false,
  this.isScreenVerified = false})
    : super(key: key) {
  // onEditNotifier.value = (isEdit ?? false) || (controller?.document.toPlainText().trim().toNotNull.isNotNullOrEmpty ?? false);
  onEditNotifier.value = (isEdit ?? false);
}