getGlobValues method

List<Glob> getGlobValues(
  1. String name, {
  2. GlobOpt? options,
})

Get Glob values

Implementation

List<Glob> getGlobValues(String name, {GlobOpt? options}) {
  var result =
      getValues(name, (Glob).toString(), toGlobValue, param: options);

  return (result.isEmpty
      ? <Glob>[]
      : result.map((x) => (x as Glob)).toList());
}