FormLayout constructor

FormLayout({
  1. String? name,
  2. double? width,
  3. double? height,
  4. String? descr,
  5. Tag? tag,
  6. String? guid,
  7. String? group,
  8. List<FormSection> sections = const [],
  9. List<String> importedServiceXPaths = const [],
})

Returns a new FormLayout instance.

Implementation

FormLayout({
  this.name,
  this.width,
  this.height,
  this.descr,
  this.tag,
  this.guid,
  this.group,
  this.sections = const [],
  this.importedServiceXPaths = const [],
});