matchesSet static method

bool matchesSet(
  1. Map map
)

Returns true if map is valid for ChartSet.

Implementation

static bool matchesSet(Map map) {
  return listMatchesAll(map.values, (dynamic e) => e is num);
}