1
0
Fork 0
mirror of synced 2024-07-16 11:56:24 +12:00
appwrite/app/sdks/dart/lib/service.dart
2019-09-20 09:33:11 +03:00

9 lines
147 B
Dart

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