sharedProfilesSupportedForPlatform function

bool sharedProfilesSupportedForPlatform({
  1. required bool isMacOS,
  2. required bool isWindows,
})

Implementation

bool sharedProfilesSupportedForPlatform({required bool isMacOS, required bool isWindows}) {
  return isMacOS || isWindows;
}