toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final userInterest = this.userInterest;
  final userInterestDisplayName = this.userInterestDisplayName;
  final userInterestPath = this.userInterestPath;
  final userInterestType = this.userInterestType;
  return {
    'userInterest': ?userInterest,
    'userInterestDisplayName': ?userInterestDisplayName,
    'userInterestPath': ?userInterestPath,
    'userInterestType': ?userInterestType,
  };
}