chapter selection in player

This commit is contained in:
Dr-Blank 2024-08-20 10:14:07 -04:00
parent c24541f1cd
commit ec8304fdc3
No known key found for this signature in database
GPG key ID: 7452CC63F210A266
7 changed files with 163 additions and 14 deletions

View file

@ -0,0 +1,8 @@
import 'package:shelfsdk/audiobookshelf_api.dart';
extension ChapterDuration on BookChapter {
Duration get duration {
// end - start
return end - start;
}
}