get<T> method
Get map value by key as specific type.
Implementation
T? get<T>(String key) {
if (!this.containsKey(key)) {
return null;
}
return this[key];
}
Get map value by key as specific type.
T? get<T>(String key) {
if (!this.containsKey(key)) {
return null;
}
return this[key];
}