1
0
Fork 0
mirror of synced 2024-07-13 10:26:15 +12:00
appwrite/app/sdks/dart/lib/service.dart

9 lines
142 B
Dart
Raw Normal View History

2019-09-20 18:35:36 +12:00
import 'package:appwrite/client.dart';
2019-09-20 18:33:11 +12:00
class Service {
Client client;
Service(Client client) {
this.client = client;
}
}