selectSupportedPlatforms function
Prompt user to select Flutter supported platforms
Implementation
List<PlatformType> selectSupportedPlatforms() {
return selectAny(
'Select supported platforms:',
choices: PlatformType.values,
defaultValues: PlatformType.values,
display: (platform) => platform.name,
);
}