TeamsProjectView constructor
TeamsProjectView({
- Key? key,
- String? projectName,
- String? hourSpend,
- dynamic onEdit()?,
- String? taskName,
- String? taskReport,
- bool? isEdit = false,
- EdgeInsets? margin = EdgeInsets.zero,
- dynamic onScreenVerify()?,
- QuillController? controller,
- int? viewType = 0,
- Widget? subChild,
- bool showEdit = false,
- 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);
}