MastodonNetworkException constructor

const MastodonNetworkException({
  1. String message = 'Network error',
  2. String? endpoint,
  3. Object? cause,
})

Implementation

const MastodonNetworkException({
  String message = 'Network error',
  this.endpoint,
  this.cause,
}) : super(message);