ModalModel constructor

ModalModel(
  1. WidgetModel parent,
  2. String? id, {
  3. dynamic title,
})

Implementation

ModalModel(WidgetModel parent, String?  id,
{
  dynamic title,
}) : super(parent, id)
{
  this.title = title;
}