copyWith method

StatusScope copyWith({
  1. ProjectId? project,
  2. StatusScopeType? type,
})

Implementation

StatusScope copyWith({ProjectId? project, StatusScopeType? type}) {
  return StatusScope(
    project: project ?? this.project,
    type: type ?? this.type,
  );
}