1
0
Fork 0
mirror of synced 2024-07-07 07:25:56 +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;
}
}