redo method

Redoes one annotation content step.
Return ZoomVideoSDKError_Success if the function succeeds. Otherwise, this function returns an error.

Implementation

@override
Future<String> redo() async {
  return await methodChannel
      .invokeMethod<String>('redo')
      .then<String>((String? value) => value ?? "");
}