init static method
Implementation
static init({
Set<Platforms>? supportedPlatforms,
Platforms? override,
Platforms? overrideHost,
}) {
_instance = Platform._(
supportedPlatforms: supportedPlatforms ?? Platforms.values.toSet(),
override: override,
overrideHost: overrideHost,
);
}