BatchScheduleActionCreateResult.fromJson constructor

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

Implementation

factory BatchScheduleActionCreateResult.fromJson(Map<String, dynamic> json) {
  return BatchScheduleActionCreateResult(
    scheduleActions: (json['scheduleActions'] as List)
        .whereNotNull()
        .map((e) => ScheduleAction.fromJson(e as Map<String, dynamic>))
        .toList(),
  );
}