serviceUnavailable static method

SDKException serviceUnavailable([
  1. String? message
])

Implementation

static SDKException serviceUnavailable([String? message]) => _build(
  code: pb_enum.ErrorCode.ERROR_CODE_SERVICE_NOT_AVAILABLE,
  category: pb_enum.ErrorCategory.ERROR_CATEGORY_COMPONENT,
  message: message ?? 'Service is currently unavailable.',
);