DfCfgParam constructor

DfCfgParam({
  1. required String id,
  2. required Type type,
  3. String title = "",
  4. bool includeTimeInDateTime = false,
  5. bool isPassword = false,
  6. Icon? icon,
  7. dynamic defaultValue,
  8. bool readOnly = false,
  9. String? comment,
  10. DfSource? dataSource,
  11. int? usedColumn,
  12. bool isDisplayable(
    1. Map<String, dynamic>
    )?,
  13. int maxTextFieldLine = 1,
  14. List<Validator>? validators,
})

Implementation

DfCfgParam(
    {required this.id,
    required this.type,
    this.title = "",
    this.includeTimeInDateTime = false,
    this.isPassword = false,
    this.icon,
    this.defaultValue,
    this.readOnly = false,
    this.comment,
    this.dataSource,
    this.usedColumn,

    /// optional function field is displayed if returned value is true
    this.isDisplayable,
    this.maxTextFieldLine = 1,
    this.validators});