BigQueryAction.fromJson constructor

BigQueryAction.fromJson(
  1. Map json_
)

Implementation

BigQueryAction.fromJson(core.Map json_)
  : this(
      jobId: json_['jobId'] as core.String?,
      sqlScript: json_['sqlScript'] as core.String?,
    );