reloadWidget method
Triggers a timeline reload for widgetName without updating the image.
Implementation
@override
Future<void> reloadWidget({required String widgetName}) async {
await _methodChannel.invokeMethod<void>('reloadWidget', {
'widgetName': widgetName,
});
}