toJson method

Map<String, dynamic> toJson()

Implementation

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