LyricView constructor

const LyricView({
  1. Key? key,
  2. required LyricController controller,
  3. double? width,
  4. double? height,
  5. LyricStyle? style,
})

Implementation

const LyricView({
  Key? key,
  required this.controller,
  this.width,
  this.height,
  this.style,
}) : super(key: key);