select_meal_for_day 1.0.5
select_meal_for_day: ^1.0.5 copied to clipboard
A Dart package that selects meals for the day. Let us handle the randomness for you!
example/select_meal_for_day_example.dart
import 'package:select_meal_for_day/select_meal_for_day.dart';
void main() {
String meal = SelectMealForDay.selectMealForDay(1);
print(meal);
}