isNetworkImage method

bool isNetworkImage(
  1. String src
)

Implementation

bool isNetworkImage(String src) {
  final uri = Uri.tryParse(src);
  return uri != null && (uri.scheme == 'http' || uri.scheme == 'https');
}