DialogBlock constructor
DialogBlock(
- String block, {
- dynamic buttonParser,
- dynamic dividerParser,
- dynamic headerParser,
- dynamic imageParser,
- dynamic sectionParser,
- dynamic spacerParser,
- dynamic dragDropParser,
- dynamic plainTextInputParser,
- dynamic checkboxParser,
- dynamic radioButtonParser,
- dynamic dateTimePickerParser,
- dynamic dropdownListParser,
- bool disabled = false,
Implementation
DialogBlock(this.block,
{buttonParser,
dividerParser,
headerParser,
imageParser,
sectionParser,
spacerParser,
dragDropParser,
plainTextInputParser,
checkboxParser,
radioButtonParser,
dateTimePickerParser,
dropdownListParser,
this.disabled = false}) {
this.buttonParser = buttonParser ?? this.buttonParser;
this.dividerParser = dividerParser ?? this.dividerParser;
this.headerParser = headerParser ?? this.headerParser;
this.imageParser = imageParser ?? this.imageParser;
this.sectionParser = sectionParser ?? this.sectionParser;
this.spacerParser = spacerParser ?? this.spacerParser;
this.dragDropParser = dragDropParser ?? this.dragDropParser;
this.plainTextInputParser =
plainTextInputParser ?? this.plainTextInputParser;
this.checkboxParser = checkboxParser ?? this.checkboxParser;
this.radioButtonParser = radioButtonParser ?? this.radioButtonParser;
this.dateTimePickerParser =
dateTimePickerParser ?? this.dateTimePickerParser;
this.dropdownListParser = dropdownListParser ?? this.dropdownListParser;
}