1
0
Fork 0
mirror of synced 2024-08-23 06:02:13 +12:00
appwrite/app/sdks/flutter-dart/lib/service.dart
2020-02-23 20:09:34 +02:00

9 lines
No EOL
142 B
Dart

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