setVideoRecordingFloatingButtonPosition static method

Future<void> setVideoRecordingFloatingButtonPosition(
  1. Position position
)

Sets the position of the video recording button when using the screen recording attachment functionality. position Position of the video recording floating button on the screen.

Implementation

static Future<void> setVideoRecordingFloatingButtonPosition(
  Position position,
) async {
  return _host.setVideoRecordingFloatingButtonPosition(position.toString());
}