1
0
Fork 0
mirror of synced 2024-08-01 11:32:23 +12:00
appwrite/app/sdks/dart/lib/service.dart
2019-09-20 09:35:36 +03:00

9 lines
142 B
Dart

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