bpm property

double bpm

Implementation

double get bpm => _getAttribute<double>(kBpm, 0);
void bpm=(double? x)

pass null to remove key from attributes

Implementation

set bpm(double? x) =>
    (x == null) ? _attributes.remove(kBpm) : _attributes[kBpm] = x;