isImageNetwork function

bool isImageNetwork(
  1. String image
)

Implementation

bool isImageNetwork(String image) {
  return image.startsWith('http');
}