toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final actions = this.actions;
  final privacyMetric = this.privacyMetric;
  final sourceTable = this.sourceTable;
  return {
    'actions': ?actions,
    'privacyMetric': ?privacyMetric,
    'sourceTable': ?sourceTable,
  };
}