GoalUrlDestinationDetails.fromJson constructor

GoalUrlDestinationDetails.fromJson(
  1. Map json_
)

Implementation

GoalUrlDestinationDetails.fromJson(core.Map json_)
  : this(
      caseSensitive: json_['caseSensitive'] as core.bool?,
      firstStepRequired: json_['firstStepRequired'] as core.bool?,
      matchType: json_['matchType'] as core.String?,
      steps:
          (json_['steps'] as core.List?)
              ?.map(
                (value) => GoalUrlDestinationDetailsSteps.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
      url: json_['url'] as core.String?,
    );