timeout static method

SDKException timeout(
  1. String reason
)

Implementation

static SDKException timeout(String reason) => _build(
  code: pb_enum.ErrorCode.ERROR_CODE_TIMEOUT,
  category: pb_enum.ErrorCategory.ERROR_CATEGORY_NETWORK,
  message: 'Operation timed out: $reason',
);