LrcLine constructor

LrcLine({
  1. required Duration timestamp,
  2. required String lyrics,
  3. required LrcTypes type,
  4. Map<String, Object>? args,
})

Implementation

LrcLine({
  required this.timestamp,
  required this.lyrics,
  required this.type,
  this.args,
});