of static method

TaskFactForMModel of({
  1. String? taskTitle,
  2. MOperationRef? operationRef,
})

Implementation

static TaskFactForMModel of({
  String? taskTitle,
  MOperationRef? operationRef
  }) {
  final self = TaskFactForMModel(<String, dynamic>{}, mtype: TaskFactForMModelRef, update: true);
  if (taskTitle != null) self.taskTitle = taskTitle;
  if (operationRef != null) self.operationRef = operationRef;
  return self;
}