spice property

String get spice

Returns a random spice/herb name.

Example:

Food().spice; // "Bay leaf"

Implementation

String get spice {
  final data = FoodData.locale(locale).spices;
  return data[Random(seed).integer(max: data.length - 1)];
}