isDynamicTypeEnabled property

bool? get isDynamicTypeEnabled

Enable/disable Dynamic Type. When enabled fonts in ReadID will scale with the accessibility settings. Defaults to true

Implementation

bool? get isDynamicTypeEnabled => _map["isDynamicTypeEnabled"] as bool?;
set isDynamicTypeEnabled (bool? value)

Enable/disable Dynamic Type. When enabled fonts in ReadID will scale with the accessibility settings. Defaults to true

Implementation

set isDynamicTypeEnabled(bool? value) => _map["isDynamicTypeEnabled"] = value;