FormFieldModel constructor
FormFieldModel(})
Implementation
FormFieldModel(super.parent, super.id,
{dynamic editable,
dynamic enabled,
dynamic post,
dynamic mandatory,
dynamic onchange,
dynamic onfocuslost}) {
if (editable != null) this.editable = editable;
if (enabled != null) this.enabled = enabled;
if (post != null) this.post = post;
if (mandatory != null) this.mandatory = mandatory;
if (onchange != null) this.onchange = onchange;
if (onfocuslost != null) this.onfocuslost = onfocuslost;
alarming = false;
dirty = false;
}