getInt method

int? getInt(
  1. String key
)

Try to get the value of the properties as int

Implementation

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