1
0
Fork 0
mirror of synced 2024-07-16 03:46:02 +12:00
appwrite/app/sdks/client-flutter/lib/service.dart

8 lines
95 B
Dart
Raw Normal View History

2020-04-06 01:23:15 +12:00
import 'client.dart';
2019-09-20 18:33:11 +12:00
class Service {
2020-04-06 16:55:38 +12:00
final Client client;
2019-09-20 18:33:11 +12:00
2020-04-06 16:55:38 +12:00
const Service(this.client);
}