shareBaseURL property Null safety

String? shareBaseURL

The share base URL of videos.

Implementation

String? get shareBaseURL => _shareBaseURL;
void shareBaseURL=(String? shareBaseURL)

Implementation

set shareBaseURL(String? shareBaseURL) {
  _shareBaseURL = shareBaseURL;
  final nativeMethodName = FWMethodNameUtil.convertToNativeMethod(
      FWNativeMethodName.setShareBaseURL);
  FWMethodChannelUtil.getFirewokSDKChannel()
      .invokeListMethod(nativeMethodName, _shareBaseURL)
      .then(
    (_) {
      FWEventBus.getInstance().fire(
        FWEvent(
          eventName: FWEventName.shareBaseURLUpdated,
        ),
      );
    },
  );
}