isrc property

int isrc

Implementation

int get isrc => _getAttribute<int>(kIsrc, 0);
void isrc=(int? x)

pass null to remove key from attributes

Implementation

set isrc(int? x) =>
    (x == null) ? _attributes.remove(kIsrc) : _attributes[kIsrc] = x;