toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final hwVersion = this.hwVersion;
  final manufacturer = this.manufacturer;
  final model = this.model;
  final swVersion = this.swVersion;
  return {
    'hwVersion': ?hwVersion,
    'manufacturer': ?manufacturer,
    'model': ?model,
    'swVersion': ?swVersion,
  };
}