toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (application != null) 'application': application!,
      if (dataQualityStandard != null)
        'dataQualityStandard': dataQualityStandard!,
      if (dataStreamId != null) 'dataStreamId': dataStreamId!,
      if (dataStreamName != null) 'dataStreamName': dataStreamName!,
      if (dataType != null) 'dataType': dataType!,
      if (device != null) 'device': device!,
      if (name != null) 'name': name!,
      if (type != null) 'type': type!,
    };