ConflictException constructor

ConflictException({
  1. Object? body,
  2. Map<String, Object>? headers,
})

Implementation

ConflictException({Object? body, super.headers})
    : super(
        body: body ?? status.reasonPhrase,
        statusCode: status.value,
      );