ListLambdaFunctionsResponse.fromJson constructor

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

Implementation

factory ListLambdaFunctionsResponse.fromJson(Map<String, dynamic> json) {
  return ListLambdaFunctionsResponse(
    lambdaFunctions: (json['LambdaFunctions'] as List?)
        ?.whereNotNull()
        .map((e) => e as String)
        .toList(),
    nextToken: json['NextToken'] as String?,
  );
}