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