TestableFormPage constructor

TestableFormPage({
  1. required TestStepForm form,
  2. required Map<String, dynamic> values,
  3. Key? key,
})

Implementation

TestableFormPage({
  required this.form,
  required this.values,
  Key? key,
}) : super(key: key);