VariableDialog<T> constructor

VariableDialog<T>({
  1. Key? key,
  2. required String actionLabel,
  3. required bool canvasDialog,
  4. required String? validator(
    1. String value
    ),
  5. ConfigurationBlockModel? configBlockModel,
  6. bool enableRemove = false,
  7. String defaultValue = '',
})

Implementation

VariableDialog({
  Key? key,
  required this.actionLabel,
  required this.canvasDialog,
  required this.validator,
  this.configBlockModel,
  this.enableRemove = false,
  this.defaultValue = '',
}) : super(key: key);