LambdaFunctionTimedOutEventAttributes.fromJson constructor
Implementation
factory LambdaFunctionTimedOutEventAttributes.fromJson(
Map<String, dynamic> json) {
return LambdaFunctionTimedOutEventAttributes(
scheduledEventId: json['scheduledEventId'] as int,
startedEventId: json['startedEventId'] as int,
timeoutType:
(json['timeoutType'] as String?)?.toLambdaFunctionTimeoutType(),
);
}