ConflictException constructor

ConflictException(
  1. String message, {
  2. int? status,
})

Implementation

ConflictException(String message, {int? status})
  : super(message, "Conflict: ", status: status ?? 409);