AvailableTestStep constructor

const AvailableTestStep({
  1. required TestStepForm form,
  2. Set<String> keys = const <String>{},
  3. required TranslationEntry help,
  4. required String id,
  5. Map<String, dynamic>? quickAddValues,
  6. required TranslationEntry title,
  7. TestableType? type,
  8. required bool widgetless,
})

Implementation

const AvailableTestStep({
  required this.form,
  this.keys = const <String>{},
  required this.help,
  required this.id,
  this.quickAddValues,
  required this.title,
  this.type,
  required this.widgetless,
});