JsonFunctions<D> extension
- on
-
- JsonMap<
D>
- JsonMap<
Methods
-
asCast<
T> (String key) → T -
Available on JsonMap<
D> , provided by the JsonFunctions extension -
asFormData(
) → String? -
Available on JsonMap<
D> , provided by the JsonFunctions extension -
get(
String key) → D? -
Available on JsonMap<
returns the value associated with thatD> , provided by the JsonFunctions extensionkey
. Returns null ifkey
is not defined -
maybe<
T, I> (String key, T? parser(I map)) → T? -
Available on JsonMap<
D> , provided by the JsonFunctions extension -
maybeCast<
T> (String key) → T? -
Available on JsonMap<
returnD> , provided by the JsonFunctions extension -
maybeCastList<
T> (String key) → List< T> ? -
Available on JsonMap<
D> , provided by the JsonFunctions extension -
set(
String key, D value, [D onConflict(D old, D value)?]) → JsonMap< D> -
Available on JsonMap<
D> , provided by the JsonFunctions extension -
tryCast<
T> (String key) → T? -
Available on JsonMap<
D> , provided by the JsonFunctions extension -
where(
bool test(String k, D v)) → JsonMap -
Available on JsonMap<
returns a map that only contains items that conform toD> , provided by the JsonFunctions extensiontest