toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final application = this.application;
  final dataQualityStandard = this.dataQualityStandard;
  final dataStreamId = this.dataStreamId;
  final dataStreamName = this.dataStreamName;
  final dataType = this.dataType;
  final device = this.device;
  final name = this.name;
  final type = this.type;
  return {
    'application': ?application,
    'dataQualityStandard': ?dataQualityStandard,
    'dataStreamId': ?dataStreamId,
    'dataStreamName': ?dataStreamName,
    'dataType': ?dataType,
    'device': ?device,
    'name': ?name,
    'type': ?type,
  };
}