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