toString method
Returns a readable string containing all summary fields.
Implementation
@override
String toString() {
return 'PlatformSummary('
'manufacturer: $manufacturer, '
'brand: $brand, '
'model: $model, '
'device: $device, '
'product: $product, '
'androidSdk: $androidSdk, '
'androidRelease: $androidRelease, '
'platformName: $platformName, '
'osName: $osName, '
'osVersion: $osVersion, '
'localizedModel: $localizedModel, '
'appEnvironment: $appEnvironment, '
'isPhysicalDevice: $isPhysicalDevice, '
'isSimulator: $isSimulator, '
'physicalMemoryBytes: $physicalMemoryBytes, '
'processorCount: $processorCount, '
'activeProcessorCount: $activeProcessorCount, '
'thermalState: $thermalState, '
'isIosNative: $isIosNative'
')';
}