11 lines
382 B
Dart
11 lines
382 B
Dart
|
|
part of '../outlet.dart';
|
||
|
|
|
||
|
|
@freezed
|
||
|
|
sealed class OutletFailure with _$OutletFailure {
|
||
|
|
const factory OutletFailure.serverError(ApiFailure failure) = _ServerError;
|
||
|
|
const factory OutletFailure.unexpectedError() = _UnexpectedError;
|
||
|
|
const factory OutletFailure.empty() = _Empty;
|
||
|
|
const factory OutletFailure.dynamicErrorMessage(String erroMessage) =
|
||
|
|
_DynamicErrorMessage;
|
||
|
|
}
|