runChild method
Implementation
Future<int> runChild(
CopyOptions? options,
String srcRelative, [
String? dstRelative,
]) {
final copy = ChildCopy(this, options, srcRelative, dstRelative);
// exclude?
return copy.run();
}
Future<int> runChild(
CopyOptions? options,
String srcRelative, [
String? dstRelative,
]) {
final copy = ChildCopy(this, options, srcRelative, dstRelative);
// exclude?
return copy.run();
}