lines property
Implementation
Future<List<BusLine>> get lines {
return platform(
android: (pool) => _androidModel
.getBusLines()
.asStream()
.asyncExpand((it) => Stream.fromIterable(it))
.map((it) => BusLine.android(it))
.toList(),
ios: (pool) => _iosModel
.get_buslines()
.asStream()
.asyncExpand((it) => Stream.fromIterable(it))
.map((it) => BusLine.ios(it))
.toList(),
);
}