mirror of
https://github.com/localsend/localsend.git
synced 2026-08-07 07:14:52 +00:00
17 lines
409 B
Dart
17 lines
409 B
Dart
import 'package:localsend_app/isolate/model/device.dart';
|
|
|
|
class DeviceInfoResult {
|
|
final DeviceType deviceType;
|
|
final String? deviceModel;
|
|
|
|
// Used to properly set Edge-to-Edge mode on Android
|
|
// See https://github.com/flutter/flutter/issues/90098
|
|
final int? androidSdkInt;
|
|
|
|
DeviceInfoResult({
|
|
required this.deviceType,
|
|
required this.deviceModel,
|
|
required this.androidSdkInt,
|
|
});
|
|
}
|