BatchScheduleActionCreateResult.fromJson constructor
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(),
);
}