TestStepPicker constructor

TestStepPicker({
  1. Key? key,
  2. required String label,
  3. required ValueChanged<TestStep?> onStepChanged,
  4. TestStep? step,
})

Implementation

TestStepPicker({
  Key? key,
  required this.label,
  required this.onStepChanged,
  this.step,
}) : super(key: key);