From 132b55f964af095c25d014fb0c8ed9734029a205 Mon Sep 17 00:00:00 2001 From: mcmah309 Date: Fri, 13 Dec 2024 19:43:53 +0000 Subject: [PATCH] doc: Update --- lib/src/cell/lazy_cell/lazy_cell_nullable.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/cell/lazy_cell/lazy_cell_nullable.dart b/lib/src/cell/lazy_cell/lazy_cell_nullable.dart index a96c7dd..c8682d1 100644 --- a/lib/src/cell/lazy_cell/lazy_cell_nullable.dart +++ b/lib/src/cell/lazy_cell/lazy_cell_nullable.dart @@ -12,7 +12,7 @@ class LazyCellNullable { LazyCellNullable(this._func); - /// Lazily evaluates the function passed into the constructor. + /// Lazily evaluates the function passed into the constructor. Equivalent to [call] but more explicit. @pragma("vm:prefer-inline") T force() => call();