Files
meshcore-sar_android/lib/services/profile_transport.dart
2026-03-16 11:25:51 +01:00

11 lines
191 B
Dart

abstract class ProfileTransport {
String get label;
}
class FileProfileTransport implements ProfileTransport {
const FileProfileTransport();
@override
String get label => 'File';
}