toJson method

  1. @override
Map<String, dynamic> toJson()

Abstract function that concrete classes must implement. This must encode the internal data model to a JSON compatible representation.

While not required, it is suggested to call removeNull before returning.

Implementation

@override
Map<String, dynamic> toJson() => {
      'deviceInfo': deviceInfo?.toJson(),
      'id': id,
      'numSteps': numSteps,
      'passedSteps': passedSteps,
      'success': success,
      'suiteName': suiteName,
      'testName': testName,
      'testVersion': testVersion,
      'timestamp': timestamp?.millisecondsSinceEpoch,
    };