prefix_util.dart 240 B

12345678910
  1. /// 前缀判断的工具类
  2. class PrefixUtil {
  3. /// 判断是否是远程图片
  4. static bool isRemoteImage(String url) {
  5. if (url.isEmpty) {
  6. return false;
  7. }
  8. return url.startsWith('http') || url.startsWith('https');
  9. }
  10. }