isNetworkImage property

bool get isNetworkImage

Implementation

bool get isNetworkImage {
  Uri uri = Uri.parse(path);
  return uri.isScheme('HTTP') || uri.isScheme('HTTPS');
}