GameDialog constructor

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

Implementation

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