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