PlatformWidget constructor
PlatformWidget({})
Implementation
PlatformWidget({
Key? key,
Widget? android,
Widget? fallback,
Widget? ios,
Widget? linux,
Widget? macOS,
Widget? web,
Widget? windows,
}) : value = PlatformValue<Widget>(
android: android,
fallback: fallback,
ios: ios,
linux: linux,
macOS: macOS,
web: web,
windows: windows,
),
super(key: key);