GoalEventDetailsEventConditions.fromJson constructor

GoalEventDetailsEventConditions.fromJson(
  1. Map json_
)

Implementation

GoalEventDetailsEventConditions.fromJson(core.Map json_)
  : this(
      comparisonType: json_['comparisonType'] as core.String?,
      comparisonValue: json_['comparisonValue'] as core.String?,
      expression: json_['expression'] as core.String?,
      matchType: json_['matchType'] as core.String?,
      type: json_['type'] as core.String?,
    );