getStation function

Iterable<List<String>> getStation()

Generator of stations data as lists

Yields: List<String>: the data of every station around the world.

Implementation

Iterable<List<String>> getStation() sync* {
  for (var station in _stations) {
    yield station;
  }
}