Dummy constructor

const Dummy({
  1. String description = todoDescription,
  2. Map<String, dynamic> parameters = const {},
  3. Device device = const Device(),
  4. Screenshot screenshot = const Screenshot(),
  5. List listParameters = const [],
})

Implementation

const Dummy({
  this.description = todoDescription,
  this.parameters = const {},
  this.device = const Device(),
  this.screenshot = const Screenshot(),
  this.listParameters = const [],
});