getPlaceholderTitle method

String? getPlaceholderTitle(
  1. String? placeholderEmptyTitle
)

Implementation

String? getPlaceholderTitle(String? placeholderEmptyTitle) {
  return status.isLoading
      ? null
      : (status.isEmpty
          ? (placeholderEmptyTitle ?? kEmptyList)
          : status.errorMessage);
}