setServerParameter method
Implementation
FutureOr<void> setServerParameter(String serverParameter) async {
if (Platform.isAndroid) {
await ($instance as $p_a.BDVideoUploader).setServerParameter(
serverParameter,
);
} else if (Platform.isIOS) {
await ($instance as $p_i.BDVideoUploaderClient).setRequestParameter({
"BDFileUploadCustomedParameter": serverParameter,
});
}
}