AlphaPlayerView constructor

const AlphaPlayerView({
  1. Key? key,
  2. required double? width,
  3. required double? height,
  4. required AlphaPlayerController controller,
  5. PlatformViewCreatedCallback? onCreated,
  6. ValueChanged<String?>? onCompleted,
})

Implementation

const AlphaPlayerView({
  Key? key,
  required this.width,
  required this.height,
  required this.controller,
  this.onCreated,
  this.onCompleted,
}) : super(key: key);