toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final contactFlowId = this.contactFlowId;
  final userId = this.userId;
  return {
    'ContactFlowId': contactFlowId,
    'UserId': userId,
  };
}