getDescription method

String getDescription()

Retrieves the human-readable description of the recipe.

Not available on partial recipes.

Implementation

String getDescription() {
  if (_native == null) {
    throw UnsupportedError('Cannot get recipe fields from a partial recipe - use Recipe.get() if you need that data');
  }
  return _native!.description;
}