MastodonApiException constructor

const MastodonApiException({
  1. required int statusCode,
  2. required String message,
  3. String? endpoint,
  4. Object? raw,
})

Implementation

const MastodonApiException({
  required this.statusCode,
  required String message,
  this.endpoint,
  this.raw,
}) : super(message);