EscapeGameDialog<T> constructor

const EscapeGameDialog<T>({
  1. String? title,
  2. required T content,
})

Creates a new EscapeGameDialog instance.

Implementation

const EscapeGameDialog({
  this.title,
  required this.content,
});