7 lines
134 B
Dart
7 lines
134 B
Dart
class CookingStep {
|
|
final String title;
|
|
final String description;
|
|
|
|
CookingStep({required this.title, this.description = ''});
|
|
}
|