copy method

  1. @override
Future<void> copy(
  1. String srcUrl,
  2. String destUrl, {
  3. bool scoped = true,
})
override

Implementation

@override
Future<void> copy(String srcUrl, String destUrl, {bool scoped = true}) async {
  await methodChannel.invokeMethod<void>('copy', {
    'src': srcUrl.toString(),
    'dest': destUrl.toString(),
    'scoped': scoped
  });
}