PlannableUserInterest.fromJson constructor

PlannableUserInterest.fromJson(
  1. Map json_
)

Implementation

PlannableUserInterest.fromJson(core.Map json_)
  : this(
      userInterest: json_.containsKey('userInterest')
          ? UserInterest.fromJson(
              json_['userInterest'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      userInterestDisplayName:
          json_['userInterestDisplayName'] as core.String?,
      userInterestPath: json_['userInterestPath'] as core.String?,
      userInterestType: json_['userInterestType'] as core.String?,
    );