FollowModeScheduleActionStartSettings.fromJson constructor

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

Implementation

factory FollowModeScheduleActionStartSettings.fromJson(
    Map<String, dynamic> json) {
  return FollowModeScheduleActionStartSettings(
    followPoint: (json['followPoint'] as String).toFollowPoint(),
    referenceActionName: json['referenceActionName'] as String,
  );
}