isAutoplay method

  1. @override
Future<bool> isAutoplay()
inherited

Implementation

@override
Future<bool> isAutoplay() {
  return _nativeAPI.isAutoplay()
      .onError<Exception>((error, stackTrace) {
        exceptionHandler(exception: error, tag: "PIGEON", stacktrace: stackTrace);
        return false;
      });
}