FormModel constructor

FormModel(
  1. WidgetModel parent,
  2. String? id, {
  3. String? type,
  4. String? title,
  5. dynamic status,
  6. dynamic visible,
  7. dynamic autosave,
  8. dynamic mandatory,
  9. dynamic geocode,
  10. dynamic oncomplete,
  11. 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;
}