exportWhiteboard method

  1. @override
Future<String> exportWhiteboard(
  1. String exportType
)

Export the whiteboard content.
exportType the export type for the whiteboard.
Return ZoomVideoSDKError_Success if the function succeeds. Otherwise, this function returns an error.

Implementation

@override
Future<String> exportWhiteboard(String exportType) async {
  var params = <String, dynamic>{};
  params.putIfAbsent("exportFormat", () => exportType);

  return await methodChannel
      .invokeMethod<String>('exportWhiteboard', params)
      .then<String>((String? value) => value ?? "");
}