dataObject method
Retrieves the value associated with key
as an object from the request data.
Implementation
dynamic dataObject(String key, {dynamic def}) {
var map = getAllData();
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 = getAllData();
return map[key] ?? def;
}