UserInterest.fromJson constructor

UserInterest.fromJson(
  1. Map json_
)

Implementation

UserInterest.fromJson(core.Map json_)
  : this(
      userInterestCategory: json_['userInterestCategory'] as core.String?,
      userInterestUserList: json_['userInterestUserList'] as core.String?,
    );