toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final policyId = this.policyId;
  final targetIds = this.targetIds;
  return {
    'PolicyId': policyId,
    'TargetIds': targetIds,
  };
}