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; }