TableList.fromJson constructor

TableList.fromJson(
  1. Map json_
)

Implementation

TableList.fromJson(core.Map json_)
  : this(
      etag: json_['etag'] as core.String?,
      kind: json_['kind'] as core.String?,
      nextPageToken: json_['nextPageToken'] as core.String?,
      tables:
          (json_['tables'] as core.List?)
              ?.map(
                (value) => TableListTables.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
      totalItems: json_['totalItems'] as core.int?,
    );