toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final edidVersion = this.edidVersion;
  final refreshRate = this.refreshRate;
  final resolutionHorizontal = this.resolutionHorizontal;
  final resolutionVertical = this.resolutionVertical;
  final serialNumber = this.serialNumber;
  return {
    'displayName': ?displayName,
    'edidVersion': ?edidVersion,
    'refreshRate': ?refreshRate,
    'resolutionHorizontal': ?resolutionHorizontal,
    'resolutionVertical': ?resolutionVertical,
    'serialNumber': ?serialNumber,
  };
}