LambdaFunctionStartedEventAttributes.fromJson constructor

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

Implementation

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