abstract class RemoteStorage { Future upload({ required String relativePath, String? localPath }); Future download({ required String relativePath, String? localPath }); Future delete(String relativePath); }