TwitterUploadException constructor

TwitterUploadException(
  1. File file,
  2. String message, [
  3. Response? response
])

Returns the new instance of TwitterUploadException.

Implementation

TwitterUploadException(
  this.file,
  final String message, [
  final Response? response,
]) : super(message, response ?? Response('', 400));