DialogAction<T> constructor

DialogAction<T>({
  1. required Widget title,
  2. T action(
    1. BuildContext context
    )?,
})

Standard constructor of the DialogAction class

Implementation

DialogAction({required this.title, this.action});