removeSupportFile method

  1. @override
Future<bool> removeSupportFile({
  1. required String pathSuffix,
})
override

Implementation

@override
Future<bool> removeSupportFile({required String pathSuffix}) async {
  final file = File(pathSuffix);
  if (file.existsSync()) {
    await file.delete();
    return true;
  } else {
    return false;
  }
}