fundId property

String fundId

Implementation

String get fundId => _getAttribute<String>(kFundId, '');
void fundId=(String? x)

pass null to remove key from attributes

Implementation

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