resume method

Future<void> resume()

Implementation

Future<void> resume() async {
  try {
    // Don't update state immediately - wait for native confirmation
    await _channel.invokeMethod('resume', _viewId);
    // State will be updated via _handleMethodCall when native confirms
  } catch (e) {
    _errorMessage = e.toString();
    notifyListeners();
  }
}