value<T> static method
Returns the value associated with the given key from the source.
Implementation
static T? value<T>(
String key,
dynamic source, [
EntityBuilder<T>? builder,
]) {
final value = source is Map ? source[key] : null;
return _v(value, builder);
}