Table.fromJson constructor

Table.fromJson(
  1. Map _json
)

Implementation

Table.fromJson(core.Map _json)
    : this(
        columns: _json.containsKey('columns')
            ? (_json['columns'] as core.List)
                .map<ColumnDescription>((value) => ColumnDescription.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        createTime: _json.containsKey('createTime')
            ? _json['createTime'] as core.String
            : null,
        displayName: _json.containsKey('displayName')
            ? _json['displayName'] as core.String
            : null,
        name: _json.containsKey('name') ? _json['name'] as core.String : null,
        savedViews: _json.containsKey('savedViews')
            ? (_json['savedViews'] as core.List)
                .map<SavedView>((value) => SavedView.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        updateTime: _json.containsKey('updateTime')
            ? _json['updateTime'] as core.String
            : null,
      );