getCommonProperties static method

Future<Map<String, dynamic>> getCommonProperties()

Thread-safe getter for all common properties

Implementation

static Future<Map<String, dynamic>> getCommonProperties() async {
  return await _lock.synchronized(() => Map.from(_commonProperties));
}