copyWith method

ProjectPermissions copyWith({
  1. bool? canEdit,
})

Implementation

ProjectPermissions copyWith({bool? canEdit}) {
  return ProjectPermissions(
    canEdit: canEdit ?? this.canEdit,
  );
}