ridePathList property
Implementation
Future<List<RidePath>> get ridePathList {
return platform(
android: (pool) async {
return (await _androidModel.getPaths())
.map((it) => RidePath.android(it))
.toList();
},
ios: (pool) async {
return (await _iosModel.get_paths())
.map((it) => RidePath.ios(it))
.toList();
},
);
}