DialogItem constructor

DialogItem(
  1. {SelectItemInfo? info,
  2. String? title,
  3. String? description,
  4. DialogImage? image}
)

An item in the list.

Implementation

DialogItem({
  this.info,
  this.title,
  this.description,
  this.image,
});