opt method
Returns the value mapped by {@code name}, or null if no such mapping exists.
Implementation
dynamic opt(String name) => (this != null) ? this![name] : null;
Returns the value mapped by {@code name}, or null if no such mapping exists.
dynamic opt(String name) => (this != null) ? this![name] : null;