toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final name = this.name;
  final datasetContentVersionValue = this.datasetContentVersionValue;
  final doubleValue = this.doubleValue;
  final outputFileUriValue = this.outputFileUriValue;
  final stringValue = this.stringValue;
  return {
    'name': name,
    if (datasetContentVersionValue != null)
      'datasetContentVersionValue': datasetContentVersionValue,
    if (doubleValue != null) 'doubleValue': doubleValue,
    if (outputFileUriValue != null) 'outputFileUriValue': outputFileUriValue,
    if (stringValue != null) 'stringValue': stringValue,
  };
}