RixaPlayer.file constructor

const RixaPlayer.file({
  1. Key? key,
  2. required String? filePath,
  3. double? width,
  4. double? height,
})

Implementation

const RixaPlayer.file({
  Key? key,
  required this.filePath,
  this.width,
  this.height,
})  : url = null,
      asset = null,
      super(key: key);