mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-06 11:09:28 +00:00
9 lines
170 B
Dart
9 lines
170 B
Dart
|
|
import 'package:shelfsdk/audiobookshelf_api.dart';
|
||
|
|
|
||
|
|
extension ChapterDuration on BookChapter {
|
||
|
|
Duration get duration {
|
||
|
|
// end - start
|
||
|
|
return end - start;
|
||
|
|
}
|
||
|
|
}
|