TableReference.fromJson constructor

TableReference.fromJson(
  1. Map json_
)

Implementation

TableReference.fromJson(core.Map json_)
  : this(
      datasetId: json_['datasetId'] as core.String?,
      projectId: json_['projectId'] as core.String?,
      tableId: json_['tableId'] as core.String?,
    );