utils/app_utils library
Extensions
- BooleanExtensions on bool?
-
IterableExtensions
on Iterable<
T> ? - MyDateUtils on DateTime
-
PairExtensions
on Pair<
T, T> - ScopeFunctionsForObject on T
- StringExtensions on String?
Functions
-
listOf<
T> (Iterable< T> list) → List<T> - To create list from Iterable
-
repeat(
int times, void action(dynamic int)) → dynamic -
Executes the given function
action
specified number oftimes
. -
run<
ReturnType> (ReturnType operation()) → ReturnType -
Calls the specified function
operation
withthis
value as its receiver and returns its result.