workouttest_app/lib/service/property_service.dart

18 lines
555 B
Dart

import 'dart:convert';
import 'package:aitrainer_app/model/cache.dart';
import 'package:aitrainer_app/model/property.dart';
import 'package:aitrainer_app/service/api.dart';
class PropertyApi {
final APIClient _client = new APIClient();
Future<List<Property>> getProperties() async {
final body = await _client.get("property/", "");
final Iterable json = jsonDecode(body);
final List<Property> properties = json.map((property) => Property.fromJson(property)).toList();
Cache().setProperties(properties);
return properties;
}
}