walkPathList property

Future<List<WalkPath>> walkPathList

Implementation

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