1
0
Fork 0
mirror of synced 2024-09-10 06:36:39 +12:00
appwrite/app/sdks/dart/lib/service.dart
2019-09-20 09:33:11 +03:00

9 lines
No EOL
147 B
Dart

import 'package:dart_appwrite/client.dart';
class Service {
Client client;
Service(Client client) {
this.client = client;
}
}