unlink method

  1. @override
Future<void> unlink(
  1. String fsPath
)
override

Deletes file asynchronously.

Implementation

@override
Future<void> unlink(String fsPath) async {
  await File(fsPath).delete();
}