isShowCover property

  1. @override
bool isShowCover
inherited

是否显示封面,只有在第一次播放前显示

Whether to show the cover, only before the first play

Implementation

@override
bool get isShowCover =>
    (_$isShowCoverComputed ??= Computed<bool>(() => super.isShowCover,
            name: '_VideoController.isShowCover'))
        .value;