// 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:flutter/services.dart'; | |
import 'package:meta/meta.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'; |