moveTo method

Future<Entry> moveTo(
  1. DirectoryEntry parent, {
  2. String? name,
})

Implementation

Future<Entry> moveTo(DirectoryEntry parent, {String? name}) {
  return Future<Entry>.value(this);
}