QueryMethodDescriptor constructor

QueryMethodDescriptor({
  1. String? name,
  2. String? fullQueryPath,
})

Implementation

factory QueryMethodDescriptor({
  $core.String? name,
  $core.String? fullQueryPath,
}) {
  final _result = create();
  if (name != null) {
    _result.name = name;
  }
  if (fullQueryPath != null) {
    _result.fullQueryPath = fullQueryPath;
  }
  return _result;
}