FeatureActivations.fromJson constructor

FeatureActivations.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory FeatureActivations.fromJson(Map<String, dynamic> json) {
  return FeatureActivations(
    inputPrepareScheduleActions:
        (json['inputPrepareScheduleActions'] as String?)
            ?.toFeatureActivationsInputPrepareScheduleActions(),
  );
}