DfCfgParam constructor
DfCfgParam({
- required String id,
- required Type type,
- String title = "",
- bool includeTimeInDateTime = false,
- bool isPassword = false,
- Icon? icon,
- dynamic defaultValue,
- bool readOnly = false,
- String? comment,
- DfSource? dataSource,
- int? usedColumn,
- bool isDisplayable()?,
- int maxTextFieldLine = 1,
- 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});