toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final adapter = this.adapter;
  final deviceId = this.deviceId;
  final driverVersion = this.driverVersion;
  return {
    'adapter': ?adapter,
    'deviceId': ?deviceId,
    'driverVersion': ?driverVersion,
  };
}