AppDialog constructor

const AppDialog({
  1. Key? key,
  2. String? title,
  3. Widget? content,
  4. List<Widget>? actions,
})

Implementation

const AppDialog({
  super.key,
  this.title,
  this.content,
  this.actions,
});