FFSupabaseUploadDataConfig constructor

FFSupabaseUploadDataConfig({
  1. FFValue? storageBucket,
  2. FFValue? storageFolderPath,
})

Implementation

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