PixaRuntimePlatformSelfCheck constructor

const PixaRuntimePlatformSelfCheck({
  1. required String platform,
  2. required bool isWeb,
  3. required bool isSupportedPlatform,
  4. required bool passed,
  5. required List<PixaRuntimePlatformCheck> checks,
})

Creates a platform self-check report.

Implementation

const PixaRuntimePlatformSelfCheck({
  required this.platform,
  required this.isWeb,
  required this.isSupportedPlatform,
  required this.passed,
  required this.checks,
});