copyFile static method

Future<void> copyFile(
  1. String from,
  2. String to, {
  3. String disk = 'public',
})

Implementation

static Future<void> copyFile(
  String from,
  String to, {
  String disk = 'public',
}) =>
    _instance.copyFile(from, to, disk: disk);