networkUnavailable static method

SDKException networkUnavailable([
  1. String? message
])

Implementation

static SDKException networkUnavailable([String? message]) => _build(
  code: pb_enum.ErrorCode.ERROR_CODE_NETWORK_UNAVAILABLE,
  category: pb_enum.ErrorCategory.ERROR_CATEGORY_NETWORK,
  message: message ?? 'Network connection unavailable.',
);