preferredApp property

String preferredApp

Implementation

String get preferredApp => _getAttribute<String>(kPreferredApp, '');
void preferredApp=(String? x)

pass null to remove key from attributes

Implementation

set preferredApp(String? x) => (x == null)
    ? _attributes.remove(kPreferredApp)
    : _attributes[kPreferredApp] = x;