ListLogsResponse.fromJson constructor

ListLogsResponse.fromJson(
  1. Map json_
)

Implementation

ListLogsResponse.fromJson(core.Map json_)
  : this(
      logNames:
          (json_['logNames'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      nextPageToken: json_['nextPageToken'] as core.String?,
    );