dataObject method
Retrieves the value associated with key
as an object from the request data.
Implementation
dynamic dataObject(String key, {dynamic def}) {
var map = getAll(keys: [key]);
return map[key] ?? def;
}
Retrieves the value associated with key
as an object from the request data.
dynamic dataObject(String key, {dynamic def}) {
var map = getAll(keys: [key]);
return map[key] ?? def;
}