toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (columns != null) 'columns': columns!,
      if (dimensions != null) 'dimensions': dimensions!,
      if (passed != null) 'passed': passed!,
      if (postScanActionsResult != null)
        'postScanActionsResult': postScanActionsResult!,
      if (rowCount != null) 'rowCount': rowCount!,
      if (rules != null) 'rules': rules!,
      if (scannedData != null) 'scannedData': scannedData!,
      if (score != null) 'score': score!,
    };