toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dartId = this.dartId;
  final desktop = this.desktop;
  final kind = this.kind;
  final mobile = this.mobile;
  final name = this.name;
  return {
    'dartId': ?dartId,
    'desktop': ?desktop,
    'kind': ?kind,
    'mobile': ?mobile,
    'name': ?name,
  };
}