TestStep constructor

const TestStep({
  1. required String type,
  2. required Map<String, dynamic> args,
  3. List<TestStep> nestedSteps = const [],
})

Implementation

const TestStep({
  required this.type,
  required this.args,
  this.nestedSteps = const [],
});