1
0
Fork 0
mirror of synced 2024-08-07 06:18:17 +12:00
appwrite/app/sdks/dart/lib/service.dart

9 lines
147 B
Dart
Raw Normal View History

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