PixaRuntimePlatformStatus constructor

const PixaRuntimePlatformStatus({
  1. required String platform,
  2. required bool isWeb,
  3. required bool isSupportedPlatform,
  4. required bool runtimeAvailable,
  5. required String message,
  6. PixaRuntimePlatformContract? contract,
})

Creates a platform status snapshot.

Implementation

const PixaRuntimePlatformStatus({
  required this.platform,
  required this.isWeb,
  required this.isSupportedPlatform,
  required this.runtimeAvailable,
  required this.message,
  this.contract,
});