copyWith method

Transitions copyWith({
  1. String? expand,
  2. List<IssueTransition>? transitions,
})

Implementation

Transitions copyWith({String? expand, List<IssueTransition>? transitions}) {
  return Transitions(
    expand: expand ?? this.expand,
    transitions: transitions ?? this.transitions,
  );
}