getString method

String? getString(
  1. String key
)

Try to get the value of the properties as String

Implementation

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