LambdaFunctionCompletedEventAttributes.fromJson constructor

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

Implementation

factory LambdaFunctionCompletedEventAttributes.fromJson(
    Map<String, dynamic> json) {
  return LambdaFunctionCompletedEventAttributes(
    scheduledEventId: json['scheduledEventId'] as int,
    startedEventId: json['startedEventId'] as int,
    result: json['result'] as String?,
  );
}