Skip to content

Commit 7efa47f

Browse files
committed
Fixed formatting issue
1 parent 4c7faec commit 7efa47f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

pkgs/async/lib/src/async_cache.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ class AsyncCache<T> {
6464
/// An ephemeral cache guarantees that a callback function will only be
6565
/// executed at most once concurrently. This is useful for requests for which
6666
/// data is updated frequently but stale data is acceptable.
67-
AsyncCache.ephemeral(): _duration = null, _cacheErrors = true;
67+
AsyncCache.ephemeral()
68+
: _duration = null,
69+
_cacheErrors = true;
6870

6971
/// Returns a cached value from a previous call to [fetch], or runs [callback]
7072
/// to compute a new one.

0 commit comments

Comments
 (0)