1
0
Fork 0
mirror of synced 2024-08-21 13:11:51 +12:00
appwrite/app/sdks/flutter-dart/lib/service.dart

7 lines
98 B
Dart
Raw Normal View History

2020-04-06 01:23:15 +12:00
import 'client.dart';
2019-09-20 18:33:11 +12:00
class Service {
2020-04-06 01:23:15 +12:00
final Client client;
2019-09-20 18:33:11 +12:00
2020-04-06 01:23:15 +12:00
const Service(this.client);
2019-09-20 18:33:11 +12:00
}