TypeQuery constructor

TypeQuery({
  1. String? type,
  2. 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;
}