TypeQuery constructor
TypeQuery({
- String? type,
- TextQueryMethod? method,
Implementation
factory TypeQuery({
$core.String? type,
$1.TextQueryMethod? method,
}) {
final $result = create();
if (type != null) {
$result.type = type;
}
if (method != null) {
$result.method = method;
}
return $result;
}