FFSupabaseUploadDataConfig constructor
Implementation
factory FFSupabaseUploadDataConfig({
FFValue? storageBucket,
FFValue? storageFolderPath,
}) {
final result = create();
if (storageBucket != null) result.storageBucket = storageBucket;
if (storageFolderPath != null) result.storageFolderPath = storageFolderPath;
return result;
}