ListFunctionsResponse.fromJson constructor

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

Implementation

factory ListFunctionsResponse.fromJson(Map<String, dynamic> json) {
  return ListFunctionsResponse(
    functions: decodeListMessage(json['functions'], Function$.fromJson) ?? [],
    nextPageToken: json['nextPageToken'] ?? '',
    unreachable: decodeList(json['unreachable']) ?? [],
  );
}