Skip to content

Commit 15e8f12

Browse files
committed
formatting
1 parent 613469b commit 15e8f12

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

packages/stream_feeds/lib/src/state/bookmark_folder_list.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ class BookmarkFolderList extends Disposable {
5252
/// Queries the initial list of bookmark folders based on the provided [BookmarkFoldersQuery].
5353
///
5454
/// Returns a [Result] containing a list of [BookmarkFolderData] or an error.
55-
Future<Result<List<BookmarkFolderData>>> get() => _queryBookmarkFolders(query);
55+
Future<Result<List<BookmarkFolderData>>> get() =>
56+
_queryBookmarkFolders(query);
5657

5758
/// Loads more bookmark folders based on the current pagination state.
5859
///

sample_app/lib/navigation/app_router.gr.dart

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sample_app/lib/utils/date_time_extensions.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ import 'package:jiffy/jiffy.dart';
22

33
extension DateTimeExtensions on DateTime {
44
String get displayRelativeTime => Jiffy.parseFromDateTime(this).fromNow();
5-
}
5+
}

0 commit comments

Comments
 (0)