PlatformSummary constructor
const
PlatformSummary({
- required String manufacturer,
- required String brand,
- required String model,
- required String device,
- required String product,
- required int androidSdk,
- required String androidRelease,
- String? platformName,
- String? osName,
- String? osVersion,
- String? localizedModel,
- String? appEnvironment,
- bool? isPhysicalDevice,
- bool? isSimulator,
- int? physicalMemoryBytes,
- int? processorCount,
- int? activeProcessorCount,
- String? thermalState,
- bool isIosNative = false,
Creates a platform summary with native platform details.
Implementation
const PlatformSummary({
required this.manufacturer,
required this.brand,
required this.model,
required this.device,
required this.product,
required this.androidSdk,
required this.androidRelease,
this.platformName,
this.osName,
this.osVersion,
this.localizedModel,
this.appEnvironment,
this.isPhysicalDevice,
this.isSimulator,
this.physicalMemoryBytes,
this.processorCount,
this.activeProcessorCount,
this.thermalState,
this.isIosNative = false,
});