upload method

Future upload({
  1. required String bucketName,
  2. required String objectKey,
  3. String? filePath,
  4. Uint8List? data,
})

Implementation

Future<dynamic> upload({
  required String bucketName,
  required String objectKey,
  String? filePath,
  Uint8List? data,
}) {
  throw UnimplementedError('upload() has not been implemented.');
}