PlatformValue<T> constructor

const PlatformValue<T>({
  1. T? android,
  2. T? ios,
  3. T? linux,
  4. T? macOS,
  5. T? fallback,
  6. T? windows,
  7. T? web,
})

Implementation

const PlatformValue({
  T? android,
  T? ios,
  T? linux,
  T? macOS,
  T? fallback,
  T? windows,
  T? web,
})  : _android = android,
      _ios = ios,
      _linux = linux,
      _macOS = macOS,
      _fallback = fallback,
      _windows = windows,
      _web = web;