ActionProperties.fromJson constructor

ActionProperties.fromJson(
  1. dynamic properties
)

Implementation

factory ActionProperties.fromJson(dynamic properties) {
  return ActionProperties(
      deeplink: properties != null ? properties["deeplink"] : null,
      analyticsProperties: properties != null ? AnalyticsProperties
          .fromJson(
          properties[AnalyticsProperties.key]) : null);
}