classify_photo.dart 405 B

12345678910111213141516
  1. import 'classify_photo_platform_interface.dart';
  2. class ClassifyPhoto {
  3. Future<String?> getPlatformVersion() {
  4. return ClassifyPhotoPlatform.instance.getPlatformVersion();
  5. }
  6. Future<List<Map<String, dynamic>>?> getPhoto() {
  7. return ClassifyPhotoPlatform.instance.getPhoto();
  8. }
  9. Future<Map<String, int>> getStorageInfo() {
  10. return ClassifyPhotoPlatform.instance.getStorageInfo();
  11. }
  12. }