toJson method

Map<String, dynamic> toJson()

Method to convert ErrorEvent instance into a JSON map.

Implementation

Map<String, dynamic> toJson() {
  return {
    'type': type,
    'testID': testID,
    'error': error,
    'stackTrace': stackTrace,
    'isFailure': isFailure,
  };
}