init static method
Implementation
static init({
int? desktopBreakpoint,
GlobalKey<NavigatorState>? navigatorKey,
List<Platforms>? supportedPlatforms,
}) {
_instance = Platform._(
desktopBreakpoint:
desktopBreakpoint ?? defaultDesktopFormFactorBreakpoint,
navigatorKey: navigatorKey,
supportedPlatforms: supportedPlatforms ?? Platforms.values,
);
}