LambdaFunctionScheduledEventAttributes.fromJson constructor

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

Implementation

factory LambdaFunctionScheduledEventAttributes.fromJson(
    Map<String, dynamic> json) {
  return LambdaFunctionScheduledEventAttributes(
    decisionTaskCompletedEventId: json['decisionTaskCompletedEventId'] as int,
    id: json['id'] as String,
    name: json['name'] as String,
    control: json['control'] as String?,
    input: json['input'] as String?,
    startToCloseTimeout: json['startToCloseTimeout'] as String?,
  );
}