BGMInfo constructor

BGMInfo({
  1. int id = invalidId,
  2. String name = '',
  3. String path = '',
  4. double pitch = 0.0,
})

Implementation

BGMInfo({
  this.id = invalidId,
  this.name = '',
  this.path = '',
  double pitch = 0.0,
}) : pitch = ValueNotifier<double>(pitch);