14 lines
364 B
Dart
14 lines
364 B
Dart
/// Flutter plugin for USB serial communication on Android.
|
|
///
|
|
/// Uses `usb-serial-for-android` (https://github.com/mik3y/usb-serial-for-android)
|
|
/// as the underlying Android library.
|
|
library;
|
|
|
|
import 'dart:async';
|
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
part 'src/usb_serial_device.dart';
|
|
part 'src/usb_serial_port.dart';
|
|
part 'src/flutter_usb_serial.dart';
|