appId property

String appId

Implementation

String get appId => _getAttribute<String>(kAppId, '');
void appId=(String? x)

pass null to remove key from attributes

Implementation

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