Vaani/lib/shared/extensions/chapter.dart

9 lines
170 B
Dart
Raw Normal View History

2024-08-20 10:14:07 -04:00
import 'package:shelfsdk/audiobookshelf_api.dart';
extension ChapterDuration on BookChapter {
Duration get duration {
// end - start
return end - start;
}
}