FrmField constructor

FrmField({
  1. required int no,
  2. required String fieldName,
  3. int? isEditable,
  4. bool? isNullable,
  5. int? primaryCol,
  6. String? value,
  7. String? combovalue,
  8. String? caption,
  9. String boxType = '',
  10. int? maxLength,
  11. int? pageNo,
  12. int? sectionNo,
  13. AutosuggestBoxPar? autosuggestBoxPar,
  14. TextEditingController? controller,
})

Implementation

FrmField(
    {required this.no,
    required this.fieldName,
    this.isEditable,
    this.isNullable,
    this.primaryCol,
    this.value,
    this.combovalue,
    this.caption,
    this.boxType = '',
    this.maxLength,
    this.pageNo,
    this.sectionNo,
    this.autosuggestBoxPar,
    this.controller});