MastodonServerException constructor

const MastodonServerException({
  1. required int statusCode,
  2. String message = 'Server error',
  3. String? endpoint,
  4. Object? raw,
})

Implementation

const MastodonServerException({
  required super.statusCode,
  super.message = 'Server error',
  super.endpoint,
  super.raw,
});