ManualWidgetDj constructor

ManualWidgetDj({
  1. dynamic key,
  2. String? name,
  3. List<String>? params,
  4. Map<String, dynamic>? args,
  5. bool? ignoreArgIfNot = true,
  6. dynamic baseWidgetDjType = 'ManualWidget',
})

Implementation

ManualWidgetDj({
  this.key,
  this.name,
  this.params,
  this.args,
  this.ignoreArgIfNot = true,
  baseWidgetDjType = 'ManualWidget',
}) : super(
        baseWidgetDjType: baseWidgetDjType,
      );