GoalEventDetails.fromJson constructor
GoalEventDetails.fromJson(
- Map json_
Implementation
GoalEventDetails.fromJson(core.Map json_)
: this(
eventConditions: (json_['eventConditions'] as core.List?)
?.map((value) => GoalEventDetailsEventConditions.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
useEventValue: json_['useEventValue'] as core.bool?,
);