toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final deviceId = this.deviceId;
  final dpcPackageName = this.dpcPackageName;
  final managementType = this.managementType;
  final userId = this.userId;
  return {
    'deviceId': ?deviceId,
    'dpcPackageName': ?dpcPackageName,
    'managementType': ?managementType,
    'userId': ?userId,
  };
}