flatten method

List<Value> flatten()

Implementation

List<Value> flatten() {
  return _data.expand((row) => row).toList();
}