PlatformSummary constructor

const PlatformSummary({
  1. required String manufacturer,
  2. required String brand,
  3. required String model,
  4. required String device,
  5. required String product,
  6. required int androidSdk,
  7. required String androidRelease,
})

Creates a platform summary with Android build 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,
});