setTitle method

FutureOr<void> setTitle(
  1. NSString title
)

{zh} @brief 设置上传素材的标题。 @param title 需要设置的素材的标题。 @notes 素材上传时独有参数。

Implementation

FutureOr<void> setTitle(NSString title) async {
  return await nativeCall('setTitle:', [title]);
}