startImmediateUpdate method
Implementation
@override
Future<bool> startImmediateUpdate() async {
try {
final result = await methodChannel.invokeMethod<bool>('startImmediateUpdate');
return result ?? false;
} catch (e) {
if (kDebugMode) {
print('Error starting immediate update: $e');
}
return false;
}
}