toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final noRecentPolicySyncCount = this.noRecentPolicySyncCount;
  final noRecentUserActivityCount = this.noRecentUserActivityCount;
  final osVersionNotCompliantCount = this.osVersionNotCompliantCount;
  final pendingUpdate = this.pendingUpdate;
  final unsupportedPolicyCount = this.unsupportedPolicyCount;
  return {
    'noRecentPolicySyncCount': ?noRecentPolicySyncCount,
    'noRecentUserActivityCount': ?noRecentUserActivityCount,
    'osVersionNotCompliantCount': ?osVersionNotCompliantCount,
    'pendingUpdate': ?pendingUpdate,
    'unsupportedPolicyCount': ?unsupportedPolicyCount,
  };
}