move method

  1. @override
Future<bool> move(
  1. String from,
  2. String to
)

Move a file to a new location.

Implementation

@override
Future<bool> move(String from, String to) async {
  if (!await copy(from, to)) return false;
  return delete(from);
}