getProperty method

String? getProperty(
  1. String name
)

Returns the system property value for the given name, or null if not found.

Example

final version = context.getProperty('dart.version');

Implementation

String? getProperty(String name) => _properties[name];