seekPlayback method
Seek to specific time in playback
Parameters:
- timeMs: Target time in milliseconds since epoch
Returns true if seek successful
Implementation
Future<bool> seekPlayback(int timeMs) async {
try {
final bool result = await _enhancedChannel.invokeMethod(
'seekPlayback',
{'timeMs': timeMs},
);
return result;
} catch (e) {
ezvizLog('Error seeking playback: $e');
return false;
}
}