pause method

Future<void>? pause()

Pause the armod in-game player with this method

Implementation

Future<void>? pause() {
  if (!_armodWidgetState.widget.enablePlaceholder) {
    return ARMODViewFlutterPlatform.instance.pausePlayer(id: armodId);
  }
  return null;
}