ScheduledWindowExecution.fromJson constructor

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

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?,
  );
}