getTyped<T> method
Returns the property key
as a typed object
Implementation
T? getTyped<T>(String key, {T Function(dynamic v)? factory}) {
return _typedMap.putIfAbsent(
key, () => _convert(this[key], factory: factory));
}
Returns the property key
as a typed object
T? getTyped<T>(String key, {T Function(dynamic v)? factory}) {
return _typedMap.putIfAbsent(
key, () => _convert(this[key], factory: factory));
}