isInternal static method

bool isInternal(
  1. String url
)

Implementation

static bool isInternal(String url) {
  final bool isInternal = url.contains(AppProperties.getHubName())
      || url.contains(AppProperties.getStorageServerName());
  return isInternal;
}