RunTestCommand constructor

RunTestCommand({
  1. String? id,
  2. required bool sendScreenshots,
  3. required Test test,
  4. DateTime? timestamp,
})

Implementation

RunTestCommand({
  String? id,
  required this.sendScreenshots,
  required this.test,
  DateTime? timestamp,
}) : super(
        id: id,
        payload: _toPayload(
          test: test,
          sendScreenshots: sendScreenshots,
        ),
        timestamp: timestamp,
        type: kCommandType,
      );