runChild method

Future<int> runChild(
  1. CopyOptions? options,
  2. String srcRelative, [
  3. String? dstRelative
])

Implementation

Future<int> runChild(CopyOptions? options, String srcRelative,
    [String? dstRelative]) {
  final copy = ChildCopy(this, options, srcRelative, dstRelative);

  // exclude?
  return copy.run();
}