flutter_blue.dart 672 B

1234567891011121314151617181920212223
  1. // Copyright 2017, Paul DeMarco.
  2. // All rights reserved. Use of this source code is governed by a
  3. // BSD-style license that can be found in the LICENSE file.
  4. library flutter_blue;
  5. import 'dart:async';
  6. import 'package:collection/collection.dart';
  7. import 'package:convert/convert.dart';
  8. import 'package:flutter/services.dart';
  9. import 'package:meta/meta.dart';
  10. import 'package:rxdart/rxdart.dart';
  11. import 'gen/flutterblue.pb.dart' as protos;
  12. part 'src/bluetooth_characteristic.dart';
  13. part 'src/bluetooth_descriptor.dart';
  14. part 'src/bluetooth_device.dart';
  15. part 'src/bluetooth_service.dart';
  16. part 'src/constants.dart';
  17. part 'src/flutter_blue.dart';
  18. part 'src/guid.dart';