isAutoRefreshEnabled method

  1. @override
Future<bool> isAutoRefreshEnabled()
override

Check if auto refresh is enabled.

Implementation

@override
Future<bool> isAutoRefreshEnabled() async {
  final result =
      await methodChannel.invokeMethod<bool>('isAutoRefreshEnabled');
  return result ?? false;
}