shareBaseURL property Null safety
The share base URL of videos.
Implementation
String? get shareBaseURL => _shareBaseURL;
Implementation
set shareBaseURL(String? shareBaseURL) {
_shareBaseURL = shareBaseURL;
final nativeMethodName = FWMethodNameUtil.convertToNativeMethod(
FWNativeMethodName.setShareBaseURL);
FWMethodChannelUtil.getFirewokSDKChannel()
.invokeListMethod(nativeMethodName, _shareBaseURL);
}