ModalModel constructor
ModalModel(})
Implementation
ModalModel(Model super.parent, super.id,
{this.child,
dynamic title,
dynamic width,
dynamic height,
dynamic x,
dynamic y,
dynamic color,
dynamic resizeable,
dynamic draggable,
dynamic modal,
dynamic closeable,
dynamic dismissible}) {
if (title != null) this.title = title;
if (width != null) this.width = width;
if (height != null) this.height = height;
if (x != null) this.x = x;
if (y != null) this.y = y;
if (color != null) this.color = color;
if (resizeable != null) this.resizeable = resizeable;
if (draggable != null) this.draggable = draggable;
if (modal != null) this.modal = modal;
if (closeable != null) this.closeable = closeable;
if (dismissible != null) dismissable = dismissible;
}