| // Copyright 2017 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| library firebase_storage; |
| |
| import 'dart:async'; |
| import 'dart:io'; |
| import 'dart:typed_data'; |
| |
| import 'package:firebase_core/firebase_core.dart'; |
| import 'package:flutter/services.dart'; |
| |
| part 'src/error.dart'; |
| part 'src/event.dart'; |
| part 'src/firebase_storage.dart'; |
| part 'src/storage_metadata.dart'; |
| part 'src/storage_reference.dart'; |
| part 'src/upload_task.dart'; |