toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (deviceCount != null) 'deviceCount': deviceCount!,
  if (jobCount != null) 'jobCount': jobCount!,
  if (printer != null) 'printer': printer!,
  if (printerId != null) 'printerId': printerId!,
  if (printerModel != null) 'printerModel': printerModel!,
  if (userCount != null) 'userCount': userCount!,
};