| // Copyright 2017, the Flutter project authors. Please see the AUTHORS file |
| // for details. 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_database; |
| |
| import 'dart:async'; |
| |
| import 'package:firebase_core/firebase_core.dart'; |
| import 'package:flutter/foundation.dart'; |
| import 'package:flutter/services.dart'; |
| |
| import 'src/utils/push_id_generator.dart'; |
| |
| part 'src/database_reference.dart'; |
| part 'src/event.dart'; |
| part 'src/firebase_database.dart'; |
| part 'src/query.dart'; |
| part 'src/on_disconnect.dart'; |