copyWithErrorMessage method

LoadableState<T> copyWithErrorMessage(
  1. String? errorMessage
)

Implementation

LoadableState<T> copyWithErrorMessage(String? errorMessage) =>
    copyWith(errorMessage: errorMessage, isLoading: false);