getObject method

Object? getObject(
  1. String key
)

Try to get the value of the properties as Object

Implementation

Object? getObject(String key) => properties?.containsKey(key) ?? false
    ? properties![key] as Object?
    : null;