isWeb function
If you want to override the kIsWeb use overrideIsWeb
but it's only
for testing
Implementation
bool isWeb({
@visibleForTesting bool? overrideIsWeb,
}) {
return overrideIsWeb ?? kIsWeb;
}
If you want to override the kIsWeb use overrideIsWeb
but it's only
for testing
bool isWeb({
@visibleForTesting bool? overrideIsWeb,
}) {
return overrideIsWeb ?? kIsWeb;
}