toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final _json = <String, dynamic>{};
  if (device != null) {
    _json[r'device'] = device;
  }
  _json[r'applications'] = applications;
  return _json;
}