deleteAsync method

Future<void> deleteAsync()

Implementation

Future<void> deleteAsync() async {
  _value = null;
  await file.delete();
}