copyLargeFile property

Future<String> copyLargeFile

Implementation

Future<String> get copyLargeFile async {
  final String fullPathName = await _channel.invokeMethod('copyLargeFile',<String, dynamic> {
    'fileName': this.fileName,
  });
  return fullPathName;
}