GameDialog constructor

GameDialog({
  1. required String id,
  2. required String title,
  3. List<GameDialogComponent> components = const [],
  4. List<GameDialogButton>? actions,
})

Implementation

GameDialog({
  required this.id,
  required this.title,
  this.components = const [],
  this.actions,
});