maybeMap<TResult extends Object?> method
TResult
maybeMap<TResult extends Object?>({
- TResult invalidApiKey(
- _InvalidApiKey value
- TResult noInternetConnection(
- _NoInternetConnection value
- TResult notFound(
- _NotFound value
- TResult unknown(
- _Unknown value
- required TResult orElse(),
inherited
Implementation
@optionalTypeArgs
TResult maybeMap<TResult extends Object?>({
TResult Function(_InvalidApiKey value)? invalidApiKey,
TResult Function(_NoInternetConnection value)? noInternetConnection,
TResult Function(_NotFound value)? notFound,
TResult Function(_Unknown value)? unknown,
required TResult orElse(),
}) =>
throw _privateConstructorUsedError;