TestStepRegistryEntry constructor

const TestStepRegistryEntry({
  1. required TestStepCategory category,
  2. required TestStepTier tier,
  3. required TestStepArgKind argKind,
  4. required String description,
  5. required Map<String, dynamic> example,
  6. String? executorCanonical,
})

Implementation

const TestStepRegistryEntry({
  required this.category,
  required this.tier,
  required this.argKind,
  required this.description,
  required this.example,
  this.executorCanonical,
});