setEnableSkipMeta method

FutureOr<void> setEnableSkipMeta(
  1. bool skipMeta
)

Implementation

FutureOr<void> setEnableSkipMeta(bool skipMeta) {
  if (Platform.isAndroid) {
    return ($instance as $p_a.BDImageXUploader).setEnableSkipMeta(skipMeta);
  } else if (Platform.isIOS) {
    return ($instance as $p_i.BDImageXUploaderClient).setUploadConfig({
      'BDFileUploadSkipMeta': skipMeta ? 1 : 0,
    });
  }
}