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'
')';
}