getDateValues method

List<DateTime> getDateValues(
  1. String name
)

Get string values

Implementation

List<DateTime> getDateValues(String name) {
  var result = getValues(name, (int).toString(), toDateValue);

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