LambdaFunctionScheduleFailedEventDetails.fromJson constructor

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

Implementation

factory LambdaFunctionScheduleFailedEventDetails.fromJson(
    Map<String, dynamic> json) {
  return LambdaFunctionScheduleFailedEventDetails(
    cause: json['cause'] as String?,
    error: json['error'] as String?,
  );
}