FormModel constructor
FormModel(
- WidgetModel parent,
- String? id, {
- String? type,
- String? title,
- dynamic status,
- dynamic visible,
- dynamic autosave,
- dynamic mandatory,
- dynamic geocode,
- dynamic oncomplete,
- dynamic showexception,
Implementation
FormModel(WidgetModel parent, String? id, {String? type, String? title, dynamic status, dynamic visible, dynamic autosave, dynamic mandatory, dynamic geocode, dynamic oncomplete, dynamic showexception}) : super(parent, id)
{
// instantiate busy observable
busy = false;
this.status = status;
this.autosave = autosave;
this.mandatory = mandatory;
this.dirty = false;
this.geocode = geocode;
this.oncomplete = oncomplete;
this.showexception = showexception;
}