Test<T> constructor

Test<T>({
  1. required Type type,
  2. required String name,
  3. required Check<T> check,
  4. Map<String, dynamic> params = const <String, dynamic>{},
  5. bool stop = false,
  6. String? message,
})

Implementation

Test({required this.type, required this.name, required this.check,this.params = const <String, dynamic>{}, this.stop = false, this.message});