objectx library
Support for doing something awesome.
More dartdocs go here.
Extensions
-
MapReader
on Map<
K, V> - Get the value in map
- ObjectLet on T
-
Extension for any Object
Note: This extension is not work in
core.dynamic
type, cast toObject?
or somethings like that to use it. - ObjectLetOrNull on T?
-
Extension for Nullable Object
Note: This extension is not work in
core.dynamic
type, cast toObject?
or somethings like that to use it. - ObjectPrint on Object?
-
Extension for Nullable Object
Note: This extension is not work in
core.dynamic
type, cast to Object? or somethings like that to use it. - StringReader on String
- Parse String to num, int, double, and bool Return null if can not parse
Functions
Typedefs
-
CastDelegate<
T, R> = R Function(T it) -
Convert
T
type toR
type