download method

  1. @override
Future download({
  1. String? bucketName,
  2. required String objectKey,
})
override

Implementation

@override
Future<dynamic> download({
  String? bucketName,
  required String objectKey,
}) async {
  return _methodChannel.invokeMethod(
    'download',
    {
      "bucketName": bucketName,
      'objectKey': objectKey,
    },
  );
}