ExecuteSqlQueryRequest.fromJson constructor

ExecuteSqlQueryRequest.fromJson(
  1. Map json_
)

Implementation

ExecuteSqlQueryRequest.fromJson(core.Map json_)
    : this(
        query: json_.containsKey('query')
            ? Query.fromJson(
                json_['query'] as core.Map<core.String, core.dynamic>)
            : null,
      );