JsonIndexSpecs constructor

JsonIndexSpecs({
  1. Iterable<JsonIndexSpec>? specs,
})

Implementation

factory JsonIndexSpecs({
  $core.Iterable<JsonIndexSpec>? specs,
}) {
  final _result = create();
  if (specs != null) {
    _result.specs.addAll(specs);
  }
  return _result;
}