Initial commit

This commit is contained in:
Tony
2026-04-27 03:19:57 +08:00
commit 523bb073fb
48 changed files with 1659 additions and 0 deletions
@@ -0,0 +1,29 @@
import 'package:plugin_platform_interface/plugin_platform_interface.dart';
import 'flutter_usb_serial_method_channel.dart';
abstract class FlutterUsbSerialPlatform extends PlatformInterface {
/// Constructs a FlutterUsbSerialPlatform.
FlutterUsbSerialPlatform() : super(token: _token);
static final Object _token = Object();
static FlutterUsbSerialPlatform _instance = MethodChannelFlutterUsbSerial();
/// The default instance of [FlutterUsbSerialPlatform] to use.
///
/// Defaults to [MethodChannelFlutterUsbSerial].
static FlutterUsbSerialPlatform get instance => _instance;
/// Platform-specific implementations should set this with their own
/// platform-specific class that extends [FlutterUsbSerialPlatform] when
/// they register themselves.
static set instance(FlutterUsbSerialPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}
Future<String?> getPlatformVersion() {
throw UnimplementedError('platformVersion() has not been implemented.');
}
}