toJson method

Map<String, dynamic> toJson()

Implementation

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