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