copyWith method

StatusMapping copyWith({
  1. String? issueTypeId,
  2. String? newStatusId,
  3. String? statusId,
})

Implementation

StatusMapping copyWith(
    {String? issueTypeId, String? newStatusId, String? statusId}) {
  return StatusMapping(
    issueTypeId: issueTypeId ?? this.issueTypeId,
    newStatusId: newStatusId ?? this.newStatusId,
    statusId: statusId ?? this.statusId,
  );
}