featureNotAvailable static method

SDKException featureNotAvailable(
  1. String feature
)

Implementation

static SDKException featureNotAvailable(String feature) => _build(
  code: pb_enum.ErrorCode.ERROR_CODE_FEATURE_NOT_AVAILABLE,
  category: pb_enum.ErrorCategory.ERROR_CATEGORY_INTERNAL,
  message: "Feature '$feature' is not available.",
);