copyWith method
Implementation
WorkflowOperations copyWith({bool? canDelete, bool? canEdit}) {
return WorkflowOperations(
canDelete: canDelete ?? this.canDelete,
canEdit: canEdit ?? this.canEdit,
);
}
WorkflowOperations copyWith({bool? canDelete, bool? canEdit}) {
return WorkflowOperations(
canDelete: canDelete ?? this.canDelete,
canEdit: canEdit ?? this.canEdit,
);
}