toJson method

Map<String, dynamic> toJson()

Implementation

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