ListLogsResponse.fromJson constructor

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

Implementation

factory ListLogsResponse.fromJson(Map<String, dynamic> json) {
  return ListLogsResponse(
    logNames: decodeList(json['logNames']) ?? [],
    nextPageToken: json['nextPageToken'] ?? '',
  );
}