enableBackgroundSync method

  1. @override
Future<bool> enableBackgroundSync()

Implementation

@override
Future<bool> enableBackgroundSync() {
  return _channel
      .invokeMethod<bool>('enableBackgroundSync')
      .then((result) => result!);
}