getValues method

Iterable getValues(
  1. String keyPath
)

Implementation

Iterable<dynamic> getValues(String keyPath) sync* {
  for (String i in keyPath.split(",")) {
    yield getValue(i);
  }
}