TestStep constructor

TestStep({
  1. required String id,
  2. Uint8List? image,
  3. Map<String, dynamic>? values,
})

Implementation

TestStep({
  required this.id,
  this.image,
  this.values,
});