ScheduledWindowExecution.fromJson constructor
Implementation
factory ScheduledWindowExecution.fromJson(Map<String, dynamic> json) {
return ScheduledWindowExecution(
executionTime: json['ExecutionTime'] as String?,
name: json['Name'] as String?,
windowId: json['WindowId'] as String?,
);
}