serverError static method

SDKException serverError(
  1. String reason
)

Implementation

static SDKException serverError(String reason) => _build(
  code: pb_enum.ErrorCode.ERROR_CODE_SERVER_ERROR,
  category: pb_enum.ErrorCategory.ERROR_CATEGORY_NETWORK,
  message: 'Server error: $reason',
);