KinescopePlayer constructor

const KinescopePlayer({
  1. Key? key,
  2. required KinescopePlayerController controller,
  3. double aspectRatio = 16 / 9,
})

A widget to play Kinescope videos.

Implementation

const KinescopePlayer({
  Key? key,
  required this.controller,
  this.aspectRatio = 16 / 9,
}) : super(key: key);