GameDialog constructor
- required String id,
- required String title,
- String? image,
- List<
GameDialogComponent> components = const [], - List<
GameDialogButton> ? actions,
Implementation
GameDialog({
required this.id,
required this.title,
this.image,
this.components = const [],
this.actions,
});