clear method

void clear(
  1. String tag
)

Implementation

void clear(String tag) {
  if ('Error' == tag) {
    _maps[tag]?.message?.forEach((element) {
      File file = File(element);
      if (file.existsSync()) {
        file.delete();
      }
    });
  }
  _maps[tag]?.clear();
}