How do I clear Flutter's image cache?

2019-02-11 18:29发布

问题:

Flutter has its own internal cache of images. I need to clear that image cache. How do I do that?

回答1:

Found this solution in the Flutter docs

import 'package:flutter/services.dart';

imageCache.clear();

just wondering how come Seth Ladd is asking question on Flutter. Am I missing something?



标签: dart flutter