ListFunctionsResponse.fromJson constructor

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

Implementation

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